first commit

This commit is contained in:
2024-02-28 16:10:40 -05:00
commit b71bbe2dc5
49 changed files with 3582 additions and 0 deletions

13
app.py Executable file
View File

@@ -0,0 +1,13 @@
# coding=utf-8
from app import app
PORT = 4056
HOST = '0.0.0.0'
if __name__ == '__main__':
app.run(
debug=True,
host=HOST,
port=PORT,
use_reloader=True
)