Skip to content

Commit

Permalink
Update and remove newrelic
Browse files Browse the repository at this point in the history
  • Loading branch information
jpadilla committed Oct 3, 2018
1 parent 8f8741d commit 7eccbae
Show file tree
Hide file tree
Showing 4 changed files with 84 additions and 116 deletions.
24 changes: 9 additions & 15 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -1,23 +1,17 @@
[[source]]

url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"


[dev-packages]

Werkzeug = "==0.12.2"

Werkzeug = "==0.14.1"

[packages]

dj-database-url = "==0.4.2"
django-configurations = "==2.0.0"
django-debug-toolbar = "==1.9.1"
django-extensions = "==1.9.7"
Django = "==2.0"
"psycopg2" = "==2.7.3.2"
gunicorn = "==19.7.1"
newrelic = "==2.98.0.81"
whitenoise = "==4.0b4"
dj-database-url = "==0.5.0"
django-configurations = "==2.1"
django-debug-toolbar = "==1.10.1"
django-extensions = "==2.1.3"
Django = "==2.1.2"
"psycopg2" = "==2.7.5"
gunicorn = "==19.9.0"
whitenoise = "==4.1"
173 changes: 74 additions & 99 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Procfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web: newrelic-admin run-program gunicorn -b "0.0.0.0:$PORT" -w 3 {{ project_name }}.wsgi
web: gunicorn -b "0.0.0.0:$PORT" -w 3 {{ project_name }}.wsgi
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ It is possible to deploy to Heroku or to your own server.
```bash
$ heroku create
$ heroku addons:add heroku-postgresql:hobby-dev
$ heroku addons:add newrelic
$ heroku pg:promote DATABASE_URL
$ heroku config:set ENVIRONMENT=PRODUCTION
$ heroku config:set DJANGO_SECRET_KEY=`./manage.py generate_secret_key`
Expand Down

0 comments on commit 7eccbae

Please sign in to comment.