- Migratie van de test omgeving naar nieuwe realiteit

This commit is contained in:
Josako
2025-09-10 14:59:07 +02:00
parent 6ccba7d1e3
commit 7cb19ca21e
2 changed files with 51 additions and 17 deletions

View File

@@ -368,7 +368,7 @@ class DevConfig(Config):
CHAT_CLIENT_PREFIX = 'chat-client/chat/'
# Define the static path
STATIC_URL = 'https://evie-staging-static.askeveai.com'
STATIC_URL = None
# PATH settings
ffmpeg_path = '/usr/bin/ffmpeg'
@@ -376,7 +376,7 @@ class DevConfig(Config):
# OBJECT STORAGE
OBJECT_STORAGE_TYPE = 'MINIO'
OBJECT_STORAGE_TENANT_BASE = 'folder'
OBJECT_STORAGE_BUCKET_NAME = ('eveai-tenants')
OBJECT_STORAGE_BUCKET_NAME = 'eveai-tenants'
# MINIO
MINIO_ENDPOINT = 'minio:9000'
MINIO_ACCESS_KEY = 'minioadmin'
@@ -396,15 +396,15 @@ class TestConfig(Config):
CHAT_CLIENT_PREFIX = 'chat-client/chat/'
# Define the static path
STATIC_URL = 'https://evie-staging-static.askeveai.com'
STATIC_URL = None
# PATH settings
ffmpeg_path = '/usr/bin/ffmpeg'
# OBJECT STORAGE
OBJECT_STORAGE_TYPE = 'MINIO'
OBJECT_STORAGE_TENANT_BASE = 'bucket'
OBJECT_STORAGE_BUCKET_NAME = 'main'
OBJECT_STORAGE_TENANT_BASE = 'folder'
OBJECT_STORAGE_BUCKET_NAME = 'eveai-tenants'
# MINIO
MINIO_ENDPOINT = 'minio:9000'
MINIO_ACCESS_KEY = 'minioadmin'