Mention Yarn in Dev Docs (#100)
Adds a mention of `yarn install` in the development guide so people know to, well, run it.
This commit is contained in:
parent
a6f0fbc043
commit
43692e45b0
|
@ -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
|
- To prefix any commands with `RAILS_ENV=production` since the default environment is "development" anyway
|
||||||
- Any cronjobs
|
- 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
|
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)
|
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:
|
You can run Mastodon with:
|
||||||
|
|
Loading…
Reference in New Issue