15 lines
246 B
Python
15 lines
246 B
Python
from flask import Flask
|
|
|
|
app = Flask(__name__)
|
|
|
|
@app.get("/health")
|
|
def health():
|
|
return {"status": "ok"}
|
|
|
|
@app.get("/")
|
|
def index():
|
|
return "Wedding backend is running."
|
|
|
|
if __name__ == "__main__":
|
|
app.run(host="0.0.0.0", port=5000)
|