aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2021-03-29 21:12:24 -0600
committerMelody Horn <melody@boringcactus.com>2021-03-29 21:12:24 -0600
commit4f1672a1941d9f190e2af86bc378b19d778c5030 (patch)
tree256897482256b29977adaf1ef646835a4ac683e1
parent0cf9f29aea49b1f1501fcd4b139ec88d942f244c (diff)
downloadwhere-packaged-4f1672a1941d9f190e2af86bc378b19d778c5030.tar.gz
where-packaged-4f1672a1941d9f190e2af86bc378b19d778c5030.zip
add heroku paraphernalia
-rw-r--r--Procfile1
-rw-r--r--requirements.txt1
-rw-r--r--runtime.txt1
3 files changed, 3 insertions, 0 deletions
diff --git a/Procfile b/Procfile
new file mode 100644
index 0000000..5810007
--- /dev/null
+++ b/Procfile
@@ -0,0 +1 @@
+web: gunicorn -w 1 app:app --log-file -
diff --git a/requirements.txt b/requirements.txt
index a7e9e12..b7f0093 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -2,3 +2,4 @@ Flask~=1.1.2
Jinja2~=2.11.3
requests~=2.25.1
semver~=2.13.0
+gunicorn; sys_platform != 'win32'
diff --git a/runtime.txt b/runtime.txt
new file mode 100644
index 0000000..30a1be6
--- /dev/null
+++ b/runtime.txt
@@ -0,0 +1 @@
+python-3.9.2