Update README

- the bootstrap script needs to be run before the app will run, so mention
  that first
- explain what run_celery_beat.sh is for and that it isn't required to run the
  app
This commit is contained in:
Jenny Duckett
2016-11-29 16:39:59 +00:00
parent 2ae8967a5f
commit 84f89fb768

View File

@@ -57,6 +57,8 @@ Install [Postgres.app](http://postgresapp.com/). You will need admin on your mac
## To run the application ## To run the application
First, run `scripts/bootstrap.sh` to install dependencies and create the databases.
You need to run the api application and a local celery instance. You need to run the api application and a local celery instance.
There are two run scripts for running all the necessary parts. There are two run scripts for running all the necessary parts.
@@ -69,6 +71,8 @@ scripts/run_app.sh
scripts/run_celery.sh scripts/run_celery.sh
``` ```
Optionally you can also run this script to run the scheduled tasks:
``` ```
scripts/run_celery_beat.sh scripts/run_celery_beat.sh
``` ```