We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba431c0 commit 19f3759Copy full SHA for 19f3759
Procfile
@@ -1 +1,3 @@
1
-web: gunicorn run:app
+web: gunicorn runp-heroku:app
2
+init: python db_create.py && python add_subjects.py
3
+upgrade: python db_upgrade.py
requirements.txt
@@ -8,6 +8,7 @@ Flask-SQLAlchemy==0.16
8
Flask-WTF==0.8.4
9
Flask-WhooshAlchemy==0.54a
10
Jinja2==2.7.1
11
+psycopg2==2.5
12
MarkupSafe==0.18
13
SQLAlchemy==0.7.9
14
Tempita==0.5.1
@@ -17,6 +18,8 @@ Whoosh==2.5.3
17
18
blinker==1.3
19
decorator==3.4.0
20
flup==1.0.2
21
+gunicorn==18.0
22
+py-bcrypt==0.4
23
python-openid==2.2.5
24
pytz==2013b
25
speaklater==1.3
runp-heroku.py
@@ -0,0 +1,2 @@
+#!venv/bin/python
+from app import app
0 commit comments