Update: Env SH Example

This commit is contained in:
Yûki VACHOT 2021-12-08 13:07:49 +01:00
parent 42887edad5
commit 22664e3f46
2 changed files with 2 additions and 0 deletions

8
backend/app.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)