mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 21:40:18 +02:00
10 lines
356 B
Python
10 lines
356 B
Python
import os
|
|
|
|
|
|
class PostgresSettings:
|
|
PG_HOST: str = os.environ.get("POSTGRES_HOST", "localhost")
|
|
PG_PORT: int = os.environ.get("POSTGRES_PORT", 5432)
|
|
PG_USER: str = os.environ.get("POSTGRES_USER", "postgres")
|
|
PG_PASSWORD: str = os.environ.get("POSTGRES_PASSWORD", "postgres")
|
|
PG_NAME: str = os.environ.get("POSTGRES_DB", "notification")
|