From 34071d26d05a531979ec21984d041f239a503fc3 Mon Sep 17 00:00:00 2001 From: Aral Balkan Date: Tue, 16 May 2017 16:09:37 +0200 Subject: [PATCH] Improve running instructions in Mac development guide (#250) --- Running-Mastodon/Development-guide.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Running-Mastodon/Development-guide.md b/Running-Mastodon/Development-guide.md index 59ea4427..4f2f5363 100644 --- a/Running-Mastodon/Development-guide.md +++ b/Running-Mastodon/Development-guide.md @@ -108,11 +108,13 @@ bundle exec rails db:setup bin/rails assets:precompile ``` -### Start the server +### Running -``` -foreman start -``` +In separate Terminal windows/tabs: + +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.