Initial commit
This commit is contained in:
commit
f8d91da0ef
2 changed files with 96 additions and 0 deletions
7
app.py
Normal file
7
app.py
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import os
|
||||
from flask_route import *
|
||||
|
||||
if __name__ == '__main__':
|
||||
PORT = int(os.environ.get('PORT', 33507))
|
||||
app.config['SECRET_KEY'] = os.environ.get('SECRET_KEY', 'secret_key')
|
||||
app.run(host='0.0.0.0', port=PORT, debug=False)
|
||||
Loading…
Add table
Add a link
Reference in a new issue