diff --git a/.gitignore b/.gitignore index b5c8d94af..4e0d7a5da 100644 --- a/.gitignore +++ b/.gitignore @@ -71,6 +71,7 @@ environment.sh .envrc .env .env* +varsfile celerybeat-schedule diff --git a/Procfile b/Procfile index 8662d896e..4815f7e08 100644 --- a/Procfile +++ b/Procfile @@ -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 \ No newline at end of file diff --git a/.env.deploy.sample b/varsfile.sample similarity index 100% rename from .env.deploy.sample rename to varsfile.sample