You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- class Settings:
- PROJECT_NAME:str = "VMS"
- PROJECT_VERSION:str = "1.0.0"
-
- POSTGRES_USER : str = "VMSBase"
- POSTGRES_PASSWORD = "VMSBasePass"
- POSTGRES_SERVER : str = "localhost"
- POSTGRES_PORT : str = "5432"
- POSTGRES_DB : str = "VMSData"
- DATABASE_URL = f"postgresql://{POSTGRES_USER}:{POSTGRES_PASSWORD}@{POSTGRES_SERVER}:{POSTGRES_PORT}/{POSTGRES_DB}"
-
- settings = Settings()
|