update id

This commit is contained in:
2025-09-14 23:11:49 -03:00
parent 9fb1895557
commit 8675edc36e
9 changed files with 28 additions and 20 deletions

View File

@@ -8,3 +8,5 @@ POSTGRES_HOST: str = os.getenv('POSTGRES_HOST') # type: ignore
POSTGRES_PORT: str = os.getenv('POSTGRES_PORT') # type: ignore
POSTGRES_USER: str = os.getenv('POSTGRES_USER') # type: ignore
POSTGRES_PASSWORD: str = os.getenv('POSTGRES_PASSWORD') # type: ignore
CONNINFO = f'dbname={POSTGRES_DB} user={POSTGRES_USER} password={POSTGRES_PASSWORD} \
host={POSTGRES_HOST} port={POSTGRES_PORT}'