Feat: started CI/CD work

This commit is contained in:
2024-12-27 01:38:50 +03:00
parent 53bb09f41c
commit 3472c3fd71
5 changed files with 66 additions and 6 deletions

View File

@@ -9,7 +9,7 @@ class Settings(BaseSettings):
postgres_password: SecretStr = Field('password', env="POSTGRES_PASSWORD")
postgres_db: str = Field('db', env="POSTGRES_DB")
postgres_host: str = Field('localhost', env="POSTGRES_HOST")
postgres_port: int = Field(15432, env="POSTGRES_PORT")
postgres_port: int = Field(5432, env="POSTGRES_PORT")
@property
def postgres_url(self) -> str: