This commit is contained in:
Yûki VACHOT 2021-12-08 03:53:51 +01:00
parent e371b7aabc
commit be5bfa1fb5
10 changed files with 115 additions and 51 deletions

6
backend/app.py Normal file
View file

@ -0,0 +1,6 @@
from application import create_app
app = create_app()
if __name__ == "__main__":
app.run(host='0.0.0.0')