Config: set default db host to localhost
Some checks failed
/ test (push) Failing after 25s
/ build (push) Has been skipped

This commit is contained in:
phil 2024-12-08 05:32:00 +01:00
parent 727698527e
commit 4a54a815a0

View file

@ -67,7 +67,7 @@ def get_cache_dir() -> Path:
class DB(BaseSettings):
model_config = SettingsConfigDict(env_prefix="treetrail_db_")
# uri: str
host: str = "treetrail-database"
host: str = "localhost"
port: int = 5432
user: str = "treetrail"
db: str = "treetrail"