- In Scaleway, we only have one bucket, and store information for each tenant in separate folders

- Added staging configuration to scaleway
This commit is contained in:
Josako
2025-08-22 10:47:03 +02:00
parent 376ad328ca
commit e6c3c24bd8
4 changed files with 99 additions and 56 deletions

View File

@@ -33,6 +33,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 _: