switched app listen from localhost to all
All checks were successful
release-tag / release-image (push) Successful in 24s

This commit is contained in:
2026-05-26 09:46:56 +02:00
parent 707cc72788
commit b886f60d4e

2
app.py
View File

@@ -98,4 +98,4 @@ if __name__ == '__main__':
# Initialize the database before starting the server # Initialize the database before starting the server
init_db() init_db()
# Run the app in debug mode # Run the app in debug mode
app.run(debug=True) app.run(host='0.0.0.0', port=5000, debug=True)