We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 979c5d2 commit fa91990Copy full SHA for fa91990
2 files changed
Procfile
@@ -1 +1 @@
1
-web: python manage.py runserver 0.0.0.0:$PORT --noreload
+web: gunicorn -b "0.0.0.0:$PORT" -w 3 tutorial.wsgi
requirements.txt
@@ -3,11 +3,6 @@ Django==1.11.7
3
Pygments==2.2.0
4
Markdown==2.6.3
5
coreapi==2.3.3
6
-
7
-# heroku
8
-# run these commands to setup heroku properly
9
-# heroku create --stack cedar --buildpack git://github.com/heroku/heroku-buildpack-python.git
10
-# heroku config:add BUILDPACK_URL=git@github.com:heroku/heroku-buildpack-python.git#purge
11
-# heroku config:set HEROKU=1
12
psycopg2==2.7.3.2
13
dj-database-url==0.4.2
+gunicorn==19.7.1
0 commit comments