Basic template
This commit is contained in:
parent
bd63ae9a4d
commit
6bceef1664
9 changed files with 66 additions and 0 deletions
6
run.py
Normal file
6
run.py
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
import os
|
||||
from app import app
|
||||
|
||||
if __name__ == "__main__":
|
||||
port = int(os.environ.get("PORT", 5000))
|
||||
app.run(host="0.0.0.0", port=port)
|
||||
Loading…
Add table
Add a link
Reference in a new issue