This repository has been archived by the owner on Dec 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This also adds the use of the Heroku Multi Buildpack which installs multiple buildpacks as defined in .buildpacks (in order)
- Loading branch information
1 parent
f20d536
commit 4f25b90
Showing
3 changed files
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
https://github.com/heroku/heroku-buildpack-redis.git | ||
https://github.com/heroku/heroku-buildpack-python.git | ||
https://github.com/heroku/heroku-buildpack-addon-wait.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
web: newrelic-admin run-program gunicorn atmo.wsgi:application --workers 4 --log-file - | ||
worker: newrelic-admin run-program python manage.py rqworker --worker-class=rq.SimpleWorker default | ||
web: bin/start-stunnel newrelic-admin run-program gunicorn atmo.wsgi:application --workers 4 --log-file - | ||
worker: bin/start-stunnel newrelic-admin run-program python manage.py rqworker --worker-class=rq.SimpleWorker default | ||
# django-rq doesn't support rqscheduler retry mode yet | ||
# so we need to use the original startup script | ||
scheduler: newrelic-admin run-program rqscheduler --url=$REDIS_URL | ||
scheduler: bin/start-stunnel newrelic-admin run-program rqscheduler --url=$REDIS_URL | ||
|
||
release: ./bin/pre_deploy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters