[add]: app setup

This commit is contained in:
VivianDee
2025-03-20 17:47:02 +01:00
parent aafa9992e3
commit f5e9fa5165
5 changed files with 330 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
from app import create_app
app = create_app()
if __name__ == "__main__":
app.run(host="0.0.0.0", port=5000, debug=True)