From 43692e45b0bbca95b838608558e2ffa8722645d3 Mon Sep 17 00:00:00 2001 From: Ben Hamill Date: Wed, 19 Apr 2017 11:28:13 -0500 Subject: [PATCH] Mention Yarn in Dev Docs (#100) Adds a mention of `yarn install` in the development guide so people know to, well, run it. --- Running-Mastodon/Development-guide.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Running-Mastodon/Development-guide.md b/Running-Mastodon/Development-guide.md index 53424d9f..298138d8 100644 --- a/Running-Mastodon/Development-guide.md +++ b/Running-Mastodon/Development-guide.md @@ -11,10 +11,14 @@ In fact, all you need is described in the [production guide](Production-guide.md - To prefix any commands with `RAILS_ENV=production` since the default environment is "development" anyway - Any cronjobs -The command to install project dependencies does not require any flags, i.e. simply +The command to install Ruby project dependencies does not require any flags, i.e. simply bundle install +Similarly, installing JavaScript dependencies doesn't require any flags: + + yarn install + By default the development environment wants to connect to a `mastodon_development` database on localhost using your user/ident to login to Postgres (i.e. not a md5 password) You can run Mastodon with: