Move bootstrap tasks into the Makefile

This is more consistent with how we run all other tasks. Note that
the virtual env setup is not generally applicable, and developers
of this repo should follow the guidance in the README.
This commit is contained in:
Ben Thorner
2021-02-17 17:22:45 +00:00
parent dc6fb1d1f2
commit af95ad68ea
3 changed files with 8 additions and 41 deletions

View File

@@ -59,7 +59,7 @@ To switch redis on you'll need to install it locally. On a OSX we've used brew f
```
# install dependencies, etc.
./scripts/bootstrap.sh
make bootstrap
# run the web app
make run-flask
@@ -75,7 +75,7 @@ make run-celery-beat
```
# install dependencies, etc.
./scripts/bootstrap.sh
make bootstrap
make test
```