15 lines
368 B
Python
15 lines
368 B
Python
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class Settings(BaseSettings):
|
|
secret_key: str = "change-me-in-production-use-env-var"
|
|
database_url: str = "sqlite:///./robot_management.db"
|
|
session_lifetime_hours: int = 24
|
|
api_key: str = "demo-api-key-change-in-production"
|
|
|
|
class Config:
|
|
env_file = ".env"
|
|
|
|
|
|
settings = Settings()
|