2025-10-03 14:09:34 +02:00
|
|
|
"""
|
|
|
|
|
Demo Session Service Configuration
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
from typing import Optional
|
2025-11-30 08:48:56 +01:00
|
|
|
from shared.config.base import BaseServiceSettings
|
2025-10-03 14:09:34 +02:00
|
|
|
|
|
|
|
|
|
2025-11-30 08:48:56 +01:00
|
|
|
class Settings(BaseServiceSettings):
|
2025-10-03 14:09:34 +02:00
|
|
|
"""Demo Session Service Settings"""
|
|
|
|
|
|
2025-11-30 08:48:56 +01:00
|
|
|
# Service info (override base settings)
|
|
|
|
|
APP_NAME: str = "Demo Session Service"
|
2025-10-03 14:09:34 +02:00
|
|
|
SERVICE_NAME: str = "demo-session"
|
|
|
|
|
VERSION: str = "1.0.0"
|
2025-11-30 08:48:56 +01:00
|
|
|
DESCRIPTION: str = "Demo session management and orchestration service"
|
2025-10-03 14:09:34 +02:00
|
|
|
|
2025-11-30 08:48:56 +01:00
|
|
|
# Database (override base property)
|
|
|
|
|
@property
|
|
|
|
|
def DATABASE_URL(self) -> str:
|
|
|
|
|
"""Build database URL from environment"""
|
|
|
|
|
return os.getenv(
|
|
|
|
|
"DEMO_SESSION_DATABASE_URL",
|
|
|
|
|
"postgresql+asyncpg://postgres:postgres@localhost:5432/demo_session_db"
|
|
|
|
|
)
|
2025-10-03 14:09:34 +02:00
|
|
|
|
2025-11-30 08:48:56 +01:00
|
|
|
# Redis configuration (demo-specific)
|
2025-10-03 14:09:34 +02:00
|
|
|
REDIS_KEY_PREFIX: str = "demo:session"
|
|
|
|
|
REDIS_SESSION_TTL: int = 1800 # 30 minutes
|
|
|
|
|
|
|
|
|
|
# Demo session configuration
|
|
|
|
|
DEMO_SESSION_DURATION_MINUTES: int = 30
|
|
|
|
|
DEMO_SESSION_MAX_EXTENSIONS: int = 3
|
|
|
|
|
DEMO_SESSION_CLEANUP_INTERVAL_MINUTES: int = 60
|
|
|
|
|
|
|
|
|
|
# Demo account credentials (public)
|
|
|
|
|
DEMO_ACCOUNTS: dict = {
|
2025-11-30 08:48:56 +01:00
|
|
|
"professional": {
|
|
|
|
|
"email": "demo.professional@panaderiaartesana.com",
|
|
|
|
|
"name": "Panadería Artesana Madrid - Demo",
|
|
|
|
|
"subdomain": "demo-artesana",
|
|
|
|
|
"base_tenant_id": "a1b2c3d4-e5f6-47a8-b9c0-d1e2f3a4b5c6",
|
|
|
|
|
"subscription_tier": "professional",
|
|
|
|
|
"tenant_type": "standalone"
|
2025-10-03 14:09:34 +02:00
|
|
|
},
|
2025-11-30 08:48:56 +01:00
|
|
|
"enterprise": {
|
|
|
|
|
"email": "demo.enterprise@panaderiacentral.com",
|
|
|
|
|
"name": "Panadería Central - Demo Enterprise",
|
|
|
|
|
"subdomain": "demo-central",
|
|
|
|
|
"base_tenant_id": "c3d4e5f6-a7b8-49c0-d1e2-f3a4b5c6d7e8",
|
|
|
|
|
"subscription_tier": "enterprise",
|
|
|
|
|
"tenant_type": "parent",
|
|
|
|
|
"children": [
|
|
|
|
|
{
|
|
|
|
|
"name": "Madrid Centro",
|
|
|
|
|
"base_tenant_id": "d4e5f6a7-b8c9-40d1-e2f3-a4b5c6d7e8f9",
|
|
|
|
|
"location": {"city": "Madrid", "zone": "Centro", "latitude": 40.4168, "longitude": -3.7038}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Barcelona Gràcia",
|
|
|
|
|
"base_tenant_id": "e5f6a7b8-c9d0-41e2-f3a4-b5c6d7e8f9a0",
|
|
|
|
|
"location": {"city": "Barcelona", "zone": "Gràcia", "latitude": 41.4036, "longitude": 2.1561}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "Valencia Ruzafa",
|
|
|
|
|
"base_tenant_id": "f6a7b8c9-d0e1-42f3-a4b5-c6d7e8f9a0b1",
|
|
|
|
|
"location": {"city": "Valencia", "zone": "Ruzafa", "latitude": 39.4623, "longitude": -0.3645}
|
|
|
|
|
}
|
|
|
|
|
]
|
2025-10-03 14:09:34 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-30 08:48:56 +01:00
|
|
|
# Service URLs - these are inherited from BaseServiceSettings
|
|
|
|
|
# but we can override defaults if needed:
|
|
|
|
|
# - GATEWAY_URL (inherited)
|
|
|
|
|
# - AUTH_SERVICE_URL, TENANT_SERVICE_URL, etc. (inherited)
|
|
|
|
|
# - JWT_SECRET_KEY, JWT_ALGORITHM (inherited)
|
|
|
|
|
# - LOG_LEVEL (inherited)
|
2025-10-03 14:09:34 +02:00
|
|
|
|
|
|
|
|
class Config:
|
|
|
|
|
env_file = ".env"
|
|
|
|
|
case_sensitive = True
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
settings = Settings()
|