settings.py 276 B

123456789
  1. from core_shared import ServiceSettings
  2. class AuthServiceSettings(ServiceSettings):
  3. service_name: str = "auth-service"
  4. service_port: int = 8014
  5. database_url: str = (
  6. "postgresql+psycopg://admin:hFOvG5UBeK5KIGhz5cQH@git.newpoint.work:5432/vectordb"
  7. )