Initial commit

This commit is contained in:
Daniel Alves Rösel
2026-04-02 18:47:14 +02:00
committed by GitHub
commit 90ad5e0260
94 changed files with 7797 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
from flask import Flask
from flask_cors import CORS
import os
from dotenv import load_dotenv
load_dotenv()
app = Flask(__name__)
CORS(app, origins="*")
@app.route('/health')
def health():
return {'status': 'healthy'}, 200
if __name__ == '__main__':
PORT=int(os.getenv("BACKEND_PORT", 5000))
app.run(host='0.0.0.0', port=PORT, debug=True)