Files
school_compare/backend/config.py

53 lines
1.4 KiB
Python
Raw Normal View History

2026-01-06 16:30:32 +00:00
"""
Application configuration using pydantic-settings.
Loads from environment variables and .env file.
"""
2026-01-07 16:20:49 +00:00
import secrets
2026-01-06 16:30:32 +00:00
from pathlib import Path
2026-01-06 17:15:43 +00:00
from typing import List, Optional
2026-01-06 16:30:32 +00:00
from pydantic_settings import BaseSettings
2026-01-07 16:20:49 +00:00
from pydantic import Field
2026-01-06 16:30:32 +00:00
class Settings(BaseSettings):
"""Application settings loaded from environment."""
2026-01-07 16:20:49 +00:00
2026-01-06 16:30:32 +00:00
# Paths
data_dir: Path = Path(__file__).parent.parent / "data"
frontend_dir: Path = Path(__file__).parent.parent / "frontend"
2026-01-07 16:20:49 +00:00
2026-01-06 16:30:32 +00:00
# Server
host: str = "0.0.0.0"
port: int = 80
2026-01-07 16:20:49 +00:00
debug: bool = False # Set to False in production
2026-01-06 17:15:43 +00:00
# Database
database_url: str = "postgresql://schoolcompare:schoolcompare@localhost:5432/schoolcompare"
2026-01-07 16:20:49 +00:00
# CORS - Production should only allow the actual domain
allowed_origins: List[str] = ["https://schoolcompare.co.uk"]
2026-01-06 16:30:32 +00:00
# API
default_page_size: int = 50
max_page_size: int = 100
2026-01-07 16:20:49 +00:00
# Security
admin_api_key: str = Field(default_factory=lambda: secrets.token_urlsafe(32))
rate_limit_per_minute: int = 60 # Requests per minute per IP
rate_limit_burst: int = 10 # Allow burst of requests
max_request_size: int = 1024 * 1024 # 1MB max request size
# Analytics
ga_measurement_id: Optional[str] = "G-J0PCVT14NY" # Google Analytics 4 Measurement ID
2026-01-06 16:30:32 +00:00
class Config:
env_file = ".env"
env_file_encoding = "utf-8"
extra = "ignore"
# Singleton instance
settings = Settings()