This commit is contained in:
2024-12-30 19:50:04 +03:00
parent 7997e561f7
commit be8a5212d8
14 changed files with 428 additions and 11 deletions

View File

@@ -10,6 +10,7 @@ from api_configs.configs import (
TestMongo,
RelationAccess,
EmailConfig,
TestDatabase,
)
__all__ = [
@@ -24,4 +25,5 @@ __all__ = [
"TestMongo",
"RelationAccess",
"EmailConfig",
"TestDatabase",
]

View File

@@ -123,7 +123,7 @@ class TestDatabase:
SQL: str = "postgresql+psycopg2"
USERNAME: str = "berkay_wag_user"
PASSWORD: str = "berkay_wag_user_password"
HOST: str = "10.10.2.44"
HOST: str = "10.10.2.46"
PORT: str = "5434"
DATABASE_NAME: str = "wag_database"
DATABASE_URL = f"{SQL}://{USERNAME}:{PASSWORD}@{HOST}:{PORT}/{DATABASE_NAME}"