Update: fdp

This commit is contained in:
Yûki VACHOT 2021-12-08 12:55:18 +01:00
parent 66fe84e3eb
commit a701b615df
3 changed files with 11 additions and 8 deletions

8
backend/run.py Normal file
View file

@ -0,0 +1,8 @@
from application import create_app
import os
app = create_app()
if __name__ == "__main__":
PORT = os.environ.get('PORT', 33507)
app.run(host='0.0.0.0', port=PORT, DEBUG=True)