Cleanup and added readme

This commit is contained in:
2025-04-25 17:16:05 +02:00
parent a6f5ee391d
commit 55aac5db69
5 changed files with 91 additions and 19 deletions

14
app.py Normal file
View File

@@ -0,0 +1,14 @@
from application import app
from application.api.views import api_blueprint
app.register_blueprint(api_blueprint)
# Default app route
@app.route("/")
def home():
return "Hello, World!"
if __name__ == "__main__":
app.run(host="192.168.137.1", port=2222, debug=True)