Merge pull request #8 from 18F/ch/cf-deploy

Run worker process on deploy
This commit is contained in:
Christa Hartsock
2022-06-23 15:50:30 -07:00
committed by GitHub
3 changed files with 3 additions and 1 deletions

1
.gitignore vendored
View File

@@ -71,6 +71,7 @@ environment.sh
.envrc
.env
.env*
varsfile
celerybeat-schedule

View File

@@ -1 +1,2 @@
web: ./scripts/paas_app_wrapper.sh
web: unset GUNICORN_CMD_ARGS; exec ./scripts/run_app_paas.sh gunicorn -c /home/vcap/app/gunicorn_config.py application
worker: exec ./scripts/run_app_paas.sh celery -A run_celery.notify_celery worker --loglevel=INFO --concurrency=4 2> /dev/null