diff options
author | Melody Horn <melody@boringcactus.com> | 2020-06-18 23:00:40 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2020-06-18 23:00:40 -0600 |
commit | 42a2ad9eab72c082ae0590559ef4eca3bfa93526 (patch) | |
tree | 0df177a4ba7132b42b5a93f31b4b4703ddf4197d | |
parent | bd569cc6c42da0dad02d2d3f5ef18d3ac06e319d (diff) | |
download | crabravebot-42a2ad9eab72c082ae0590559ef4eca3bfa93526.tar.gz crabravebot-42a2ad9eab72c082ae0590559ef4eca3bfa93526.zip |
install gunicorn in a more reliable way
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Aptfile | 1 | ||||
-rw-r--r-- | requirements.txt | 1 |
3 files changed, 2 insertions, 1 deletions
@@ -1,3 +1,4 @@ /venv /.idea /.env +/__pycache__ @@ -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' |