Set up PostgreSQL database layer with async SQLAlchemy 2.0 and asyncpg driver. Implements 6 core tables (games, routes, pokemon, route_encounters, nuzlocke_runs, encounters) with foreign keys, indexes, and an initial Alembic migration. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
22 lines
485 B
Python
22 lines
485 B
Python
from pydantic_settings import BaseSettings, SettingsConfigDict
|
|
|
|
|
|
class Settings(BaseSettings):
|
|
model_config = SettingsConfigDict(
|
|
env_file=".env",
|
|
env_file_encoding="utf-8",
|
|
extra="ignore",
|
|
)
|
|
|
|
app_name: str = "Nuzlocke Tracker API"
|
|
debug: bool = False
|
|
|
|
# API settings
|
|
api_v1_prefix: str = "/api/v1"
|
|
|
|
# Database settings
|
|
database_url: str = "postgresql+asyncpg://postgres:postgres@localhost:5432/nuzlocke"
|
|
|
|
|
|
settings = Settings()
|