mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -05:00
Merge pull request #4244 from tareko/master
Update Vagrant development environment and Ubuntu developer instructions
This commit is contained in:
commit
25541e99f9
2 changed files with 11 additions and 7 deletions
6
Vagrantfile
vendored
6
Vagrantfile
vendored
|
@ -3,8 +3,8 @@
|
|||
# See https://github.com/discourse/discourse/blob/master/docs/VAGRANT.md
|
||||
#
|
||||
Vagrant.configure("2") do |config|
|
||||
config.vm.box = 'discourse/discourse-1.3.0'
|
||||
config.vm.box_url = "http://discourse-vms.s3.amazonaws.com/discourse-1.3.0.box"
|
||||
config.vm.box = 'discourse-16.04'
|
||||
config.vm.box_url = "https://www.dropbox.com/s/2132770g1e05c6d/discourse.box?dl=1"
|
||||
|
||||
# Make this VM reachable on the host network as well, so that other
|
||||
# VM's running other browsers can access our dev server.
|
||||
|
@ -43,6 +43,6 @@ Vagrant.configure("2") do |config|
|
|||
config.vm.network :forwarded_port, guest: 1080, host: 4080 # Mailcatcher
|
||||
|
||||
nfs_setting = RUBY_PLATFORM =~ /darwin/ || RUBY_PLATFORM =~ /linux/
|
||||
config.vm.synced_folder ".", "/vagrant", id: "vagrant-root", :nfs => nfs_setting
|
||||
config.vm.synced_folder ".", "/vagrant", id: "vagrant-root"
|
||||
|
||||
end
|
||||
|
|
|
@ -12,12 +12,15 @@ To get your Ubuntu 16.04 LTS install up and running to develop Discourse and Dis
|
|||
whoami > /tmp/username
|
||||
sudo add-apt-repository ppa:chris-lea/redis-server
|
||||
sudo apt-get -yqq update
|
||||
sudo apt-get -yqq install python-software-properties vim curl expect debconf-utils git-core build-essential zlib1g-dev libssl-dev openssl libcurl4-openssl-dev libreadline6-dev libpcre3 libpcre3-dev imagemagick postgresql postgresql-contrib-9.5 libpq-dev postgresql-server-dev-9.5 redis-server advancecomp gifsicle jhead jpegoptim libjpeg-progs optipng pngcrush pngquant
|
||||
sudo apt-get -yqq install python-software-properties vim curl expect debconf-utils git-core build-essential zlib1g-dev libssl-dev openssl libcurl4-openssl-dev libreadline6-dev libpcre3 libpcre3-dev imagemagick postgresql postgresql-contrib-9.5 libpq-dev postgresql-server-dev-9.5 redis-server advancecomp gifsicle jhead jpegoptim libjpeg-turbo-progs optipng pngcrush pngquant
|
||||
|
||||
# Ruby
|
||||
curl -sSL https://rvm.io/mpapis.asc | gpg2 --import -
|
||||
\curl -sSL https://get.rvm.io | bash -s stable
|
||||
curl -sSL https://get.rvm.io | bash -s stable
|
||||
echo 'gem: --no-document' >> ~/.gemrc
|
||||
|
||||
# Logout and back in to activate RVM installation
|
||||
|
||||
rvm install 2.3.1
|
||||
rvm --default use 2.3.1 # If this error out check https://rvm.io/integration/gnome-terminal
|
||||
gem install bundler mailcatcher
|
||||
|
@ -31,6 +34,7 @@ To get your Ubuntu 16.04 LTS install up and running to develop Discourse and Dis
|
|||
psql -c "create database discourse_test owner $(cat /tmp/username) encoding 'UTF8' TEMPLATE template0;"
|
||||
psql -d discourse_development -c "CREATE EXTENSION hstore;"
|
||||
psql -d discourse_development -c "CREATE EXTENSION pg_trgm;"
|
||||
exit
|
||||
|
||||
# Node
|
||||
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.1/install.sh | bash
|
||||
|
@ -46,8 +50,8 @@ If everything goes alright, let's clone Discourse and start hacking:
|
|||
cd ~/discourse
|
||||
bundle install
|
||||
bundle exec rake db:create db:migrate db:test:prepare
|
||||
bundle exec rake autospec # CTRL + C to stop
|
||||
bundle exec rails server # Open browser on http://localhost:3000 and you should see Discourse
|
||||
bundle exec rake autospec # CTRL + C to stop; Optional
|
||||
bundle exec rails s -b 0.0.0.0 # Open browser on http://localhost:3000 and you should see Discourse
|
||||
|
||||
Create a test account, and enable it with:
|
||||
|
||||
|
|
Loading…
Reference in a new issue