Initial commit

This commit is contained in:
Yûki VACHOT 2021-12-01 11:05:48 +01:00
commit f8d91da0ef
2 changed files with 96 additions and 0 deletions

7
app.py Normal file
View 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)