mirror of
https://github.com/azaion/gps-denied-desktop.git
synced 2026-04-22 22:06:36 +00:00
abc26d5c20
docs -> _docs
15 lines
310 B
Python
15 lines
310 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class DatabaseConfig(BaseModel):
|
|
host: str = "localhost"
|
|
port: int = 5432
|
|
database: str = "gps_denied"
|
|
username: str = "postgres"
|
|
password: str = ""
|
|
pool_size: int = 50
|
|
max_overflow: int = 50
|
|
pool_timeout: int = 30
|
|
pool_recycle: int = 3600
|
|
|