add postgres

This commit is contained in:
2025-08-26 00:00:42 -03:00
parent 1326530991
commit e33eccebb9
43 changed files with 622 additions and 636 deletions

View File

@@ -2,3 +2,9 @@ import os
MEILISEARCH_HOST: str = os.getenv('MEILISEARCH_HOST') # type: ignore
MEILISEARCH_API_KEY: str = os.getenv('MEILISEARCH_API_KEY') # type: ignore
POSTGRES_DB: str = os.getenv('POSTGRES_DB') # type: ignore
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