add gunicorn
This commit is contained in:
parent
82d24e9773
commit
e15c6e4727
2 changed files with 6 additions and 0 deletions
|
@ -1,2 +1,4 @@
|
||||||
Flask==2.0.1
|
Flask==2.0.1
|
||||||
Flask-Cors==3.0.10
|
Flask-Cors==3.0.10
|
||||||
|
gunicorn
|
||||||
|
requests
|
||||||
|
|
4
wsgi.py
Normal file
4
wsgi.py
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
from app import app
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
app.run()
|
Reference in a new issue