14 lines
238 B
Python
14 lines
238 B
Python
from pydantic import BaseSettings
|
|
|
|
|
|
class Settings(BaseSettings):
|
|
dev_mode: bool = False
|
|
dev_npm_port: int = 3000
|
|
|
|
frontend_path: str = "frontend"
|
|
database_path: str = "db.json"
|
|
|
|
secret_key: str
|
|
|
|
|
|
settings = Settings() |