Initial commit
This commit is contained in:
commit
983cee0320
322 changed files with 57174 additions and 0 deletions
8
backup/fina-2/run.py
Normal file
8
backup/fina-2/run.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
from app import create_app
|
||||
import os
|
||||
|
||||
app = create_app()
|
||||
|
||||
if __name__ == '__main__':
|
||||
port = int(os.environ.get('PORT', 5103))
|
||||
app.run(host='0.0.0.0', port=port, debug=False)
|
||||
Loading…
Add table
Add a link
Reference in a new issue