diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2014-05-28 13:06:20 +0300 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2014-05-28 13:06:20 +0300 |
| commit | 4bcc90496f7400fbd409f93c632c374800ef8ae0 (patch) | |
| tree | ee25f3ab06020b86a6f7c988ed66c11c30e19cb4 | |
| parent | fe2554a387064a522910bf23c18f4e7794ae4863 (diff) | |
Use gunicorn
| -rw-r--r-- | Procfile | 2 | ||||
| -rw-r--r-- | requirements.txt | 1 | ||||
| -rw-r--r-- | templates/home.html | 2 |
3 files changed, 2 insertions, 3 deletions
@@ -1 +1 @@ -web: python server.py +web: gunicorn server:app diff --git a/requirements.txt b/requirements.txt index aefbef6..a5697db 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,5 +2,6 @@ Flask==0.10.1 Jinja2==2.7.2 MarkupSafe==0.23 Werkzeug==0.9.4 +gunicorn==18.0 itsdangerous==0.24 wsgiref==0.1.2 diff --git a/templates/home.html b/templates/home.html index 9f48ad1..0140224 100644 --- a/templates/home.html +++ b/templates/home.html @@ -19,8 +19,6 @@ }); }); </script> - <style> - </style> </head> <body> <div class="container"> |
