aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2020-06-18 23:00:40 -0600
committerMelody Horn <melody@boringcactus.com>2020-06-18 23:00:40 -0600
commit42a2ad9eab72c082ae0590559ef4eca3bfa93526 (patch)
tree0df177a4ba7132b42b5a93f31b4b4703ddf4197d
parentbd569cc6c42da0dad02d2d3f5ef18d3ac06e319d (diff)
downloadcrabravebot-42a2ad9eab72c082ae0590559ef4eca3bfa93526.tar.gz
crabravebot-42a2ad9eab72c082ae0590559ef4eca3bfa93526.zip
install gunicorn in a more reliable way
-rw-r--r--.gitignore1
-rw-r--r--Aptfile1
-rw-r--r--requirements.txt1
3 files changed, 2 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 3240065..e61018a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
/venv
/.idea
/.env
+/__pycache__
diff --git a/Aptfile b/Aptfile
index 0f1d3cc..20645e6 100644
--- a/Aptfile
+++ b/Aptfile
@@ -1,2 +1 @@
-gunicorn
ffmpeg
diff --git a/requirements.txt b/requirements.txt
index 00f9b5a..4865ed5 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -3,3 +3,4 @@ python-dotenv
Pillow
libhoney
Flask
+gunicorn; sys_platform != 'win32'