Test: Not finished

This commit is contained in:
Yûki VACHOT 2022-01-29 17:18:43 +01:00
parent db79c561c7
commit c1300fdb5f
12 changed files with 546 additions and 17 deletions

8
backend/app.py Normal file
View file

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