This commit is contained in:
pika 2025-03-30 23:42:24 +02:00
parent 3b2f1db4ce
commit 5c16964b76
47 changed files with 2080 additions and 1053 deletions

View file

@ -5,9 +5,9 @@ from app import create_app
# os.environ['DATABASE_URL'] = 'your_production_database_url'
# Create a production application
app = create_app('production')
app = create_app("production")
if __name__ == '__main__':
if __name__ == "__main__":
# This is only used for development
# In production, a WSGI server would import this file
app.run(host='0.0.0.0', port=5000)
app.run(host="0.0.0.0", port=5000)