Update gpu service DATABASE_URL to point to aitbc1 PostgreSQL

This commit is contained in:
aitbc
2026-05-02 10:24:48 +02:00
parent fd8a516ba5
commit f8297a52b3

View File

@@ -13,7 +13,7 @@ from aitbc import get_logger
logger = get_logger(__name__) logger = get_logger(__name__)
# Database URL from environment variable or default # Database URL from environment variable or default
DATABASE_URL = "postgresql+asyncpg://aitbc_gpu:password@localhost:5432/aitbc_gpu" DATABASE_URL = "postgresql+asyncpg://aitbc_gpu:password@10.1.223.40:5432/aitbc_gpu"
# Create async engine # Create async engine
engine = create_async_engine(DATABASE_URL, echo=False) engine = create_async_engine(DATABASE_URL, echo=False)