Add /coucou endpoint

This commit is contained in:
Vibecoding agent 2026-01-28 17:31:26 +00:00
parent 3bcc2c9aef
commit 9e3dbfccff

View File

@ -8,6 +8,10 @@ app = Flask(__name__)
def home(): def home():
return render_template('index.html') return render_template('index.html')
@app.route('/coucou')
def coucou():
return "OK", 200
if __name__ == "__main__": if __name__ == "__main__":
port = int(os.environ.get('PORT', 5000)) port = int(os.environ.get('PORT', 5000))