Update: fdp
This commit is contained in:
parent
66fe84e3eb
commit
a701b615df
3 changed files with 11 additions and 8 deletions
8
backend/run.py
Normal file
8
backend/run.py
Normal 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue