- Addition of FLASK_ENV setting for all eveai services

- Addition of flower to the monitoring stack
This commit is contained in:
Josako
2025-09-09 21:07:10 +02:00
parent 10ca344c84
commit 6fbaff45a8
17 changed files with 206 additions and 0 deletions

View File

@@ -30,6 +30,8 @@ def create_app(config_file=None):
match environment:
case 'development':
app.config.from_object(get_config('dev'))
case 'staging':
app.config.from_object(get_config('staging'))
case 'production':
app.config.from_object(get_config('prod'))
case _: