Update: Env SH Example
This commit is contained in:
parent
42887edad5
commit
22664e3f46
2 changed files with 2 additions and 0 deletions
8
backend/app.py
Normal file
8
backend/app.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