From 84f89fb768ef448d0b47202fc90b8dcc436e237f Mon Sep 17 00:00:00 2001 From: Jenny Duckett Date: Tue, 29 Nov 2016 16:39:59 +0000 Subject: [PATCH] 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 --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 94f88a902..324d0a0e6 100644 --- a/README.md +++ b/README.md @@ -57,6 +57,8 @@ Install [Postgres.app](http://postgresapp.com/). You will need admin on your mac ## 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. There are two run scripts for running all the necessary parts. @@ -69,6 +71,8 @@ scripts/run_app.sh scripts/run_celery.sh ``` +Optionally you can also run this script to run the scheduled tasks: + ``` scripts/run_celery_beat.sh ```