DEVELOPER-ADVANCED.md: update instructions to use rake tasks instead of (outdated) manual commands
This commit is contained in:
parent
fafe7cc661
commit
93bd03f7e0
|
@ -26,13 +26,9 @@ To get your Ubuntu 16.04 LTS install up and running to develop Discourse and Dis
|
||||||
gem install bundler mailcatcher
|
gem install bundler mailcatcher
|
||||||
|
|
||||||
# Postgresql
|
# Postgresql
|
||||||
sudo su postgres
|
sudo -u postgres -i
|
||||||
createuser --createdb --superuser -Upostgres $(cat /tmp/username)
|
createuser --superuser -Upostgres $(cat /tmp/username)
|
||||||
psql -c "ALTER USER $(cat /tmp/username) WITH PASSWORD 'password';"
|
psql -c "ALTER USER $(cat /tmp/username) WITH PASSWORD 'password';"
|
||||||
psql -c "create database discourse_development owner $(cat /tmp/username) encoding 'UTF8' TEMPLATE template0;"
|
|
||||||
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
|
exit
|
||||||
|
|
||||||
# Node
|
# Node
|
||||||
|
@ -50,8 +46,14 @@ If everything goes alright, let's clone Discourse and start hacking:
|
||||||
git clone https://github.com/discourse/discourse.git ~/discourse
|
git clone https://github.com/discourse/discourse.git ~/discourse
|
||||||
cd ~/discourse
|
cd ~/discourse
|
||||||
bundle install
|
bundle install
|
||||||
bundle exec rake db:migrate
|
|
||||||
RAILS_ENV=test bundle exec rake db:migrate
|
# run this if there was a pre-existing database
|
||||||
|
bundle exec rake db:drop
|
||||||
|
RAILS_ENV=test bundle exec rake db:drop
|
||||||
|
|
||||||
|
# time to create the database and run migrations
|
||||||
|
bundle exec rake db:create db:migrate
|
||||||
|
RAILS_ENV=test bundle exec rake db:create db:migrate
|
||||||
|
|
||||||
# run the specs (optional)
|
# run the specs (optional)
|
||||||
bundle exec rake autospec # CTRL + C to stop
|
bundle exec rake autospec # CTRL + C to stop
|
||||||
|
@ -63,6 +65,12 @@ Create an admin account with:
|
||||||
|
|
||||||
bundle exec rake admin:create
|
bundle exec rake admin:create
|
||||||
|
|
||||||
|
If you ever need to recreate your database:
|
||||||
|
|
||||||
|
bundle exec rake db:drop db:create db:migrate
|
||||||
|
bundle exec rake admin:create
|
||||||
|
RAILS_ENV=test bundle exec rake db:drop db:create db:migrate
|
||||||
|
|
||||||
Discourse does a lot of stuff async, so it's better to run sidekiq even on development mode:
|
Discourse does a lot of stuff async, so it's better to run sidekiq even on development mode:
|
||||||
|
|
||||||
mailcatcher # open http://localhost:1080 to see the emails, stop with pkill -f mailcatcher
|
mailcatcher # open http://localhost:1080 to see the emails, stop with pkill -f mailcatcher
|
||||||
|
|
Loading…
Reference in New Issue