Replace foreman with honcho

This commit is contained in:
Ryan Ahearn
2022-11-01 09:54:31 -04:00
parent 55bccecf10
commit db96c4d82f
4 changed files with 28 additions and 13 deletions

View File

@@ -58,17 +58,19 @@ Our other repositories are:
# follow the instructions in .env
```
1. Run Flask
1. Run the web server and background worker
`make run-flask`
`make run-procfile`
1. Run Celery
1. Or run them individually:
`make run-celery`
* Run Flask (web server)
1. Or, run flask and celery together with [foreman](https://rubygems.org/gems/foreman)
`make run-flask`
`foreman start -f Procfile.dev`
* Run Celery (background worker)
`make run-celery`
### VS Code && Docker installation