Update: save Docker nginx Angular Node Flask

This commit is contained in:
Yûki VACHOT 2022-02-01 19:38:39 +01:00
parent 1a3bee1846
commit fcedd7534c
16 changed files with 89 additions and 84 deletions

9
frontend/backend/app.py Normal file
View file

@ -0,0 +1,9 @@
print("Import backend")
from application import create_app
print("Import os")
import os
app = create_app(os.environ.get('FLASK_ENV'))
if __name__ == "__main__":
app.run(host='0.0.0.0', DEBUG=True)