13 lines
203 B
Python
13 lines
203 B
Python
from pydantic import BaseSettings
|
|
|
|
|
|
class Settings(BaseSettings):
|
|
dev_mode: bool = False
|
|
dev_npm_port: int = 3000
|
|
|
|
frontend_path: str = "frontend"
|
|
|
|
secret_key: str
|
|
|
|
|
|
settings = Settings() |