bett
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2024-04-16 19:07:08 +02:00
parent fe5ad6ba8d
commit c8648788d0
4 changed files with 9 additions and 3 deletions

View File

@ -219,6 +219,12 @@ def delete_nutrition():
conn.close()
@app.route('/random')
def random_page():
# Diese Route gibt die HTML-Seite 'random.html' zurück
return render_template('random.html')
exposed_app = ProxyFix(app, x_for=1, x_host=1)