Improve running instructions in Mac development guide (#250)

This commit is contained in:
Aral Balkan 2017-05-16 16:09:37 +02:00
parent c84f141e22
commit 34071d26d0
No known key found for this signature in database
GPG Key ID: 4EBA5FC41999F140
1 changed files with 6 additions and 4 deletions

View File

@ -108,11 +108,13 @@ bundle exec rails db:setup
bin/rails assets:precompile bin/rails assets:precompile
``` ```
### Start the server ### Running
``` In separate Terminal windows/tabs:
foreman start
``` 1. Start PostgreSQL: `/usr/local/bin/postgres`
2. Start Redis: `redis-server`
3. Start Mastodon (from the Mastodon folder): `foreman start`
Go to http://localhost:3000 to see your development instance. Go to http://localhost:3000 to see your development instance.