first commit

This commit is contained in:
no
2024-11-29 14:00:20 +01:00
commit a6fe7bf1c7
16 changed files with 455 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
from app import create_app
app = create_app()
if __name__ == "__main__":
# app.run(debug=True)
app.run(host='0.0.0.0', port=5000)