use gunicorn

This commit is contained in:
bretello 2024-06-14 20:24:56 +02:00
parent d9eeb67128
commit a598299a12
Signed by: brethil
GPG Key ID: 876AAC6290170FE7
2 changed files with 2 additions and 2 deletions

View File

@ -1,2 +1,2 @@
flask flask
# gunicorn gunicorn

2
run.sh
View File

@ -1,4 +1,4 @@
#!/usr/bin/env sh #!/usr/bin/env sh
. .venv/bin/activate . .venv/bin/activate
flask run --host 0.0.0.0 --port 8080 gunicorn --bind 0.0.0.0:8080 app:app