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.

12 lines
410 B

  1. class Settings:
  2. PROJECT_NAME:str = "VMS"
  3. PROJECT_VERSION:str = "1.0.0"
  4. POSTGRES_USER : str = "VMSBase"
  5. POSTGRES_PASSWORD = "VMSBasePass"
  6. POSTGRES_SERVER : str = "localhost"
  7. POSTGRES_PORT : str = "5432"
  8. POSTGRES_DB : str = "VMSData"
  9. DATABASE_URL = f"postgresql://{POSTGRES_USER}:{POSTGRES_PASSWORD}@{POSTGRES_SERVER}:{POSTGRES_PORT}/{POSTGRES_DB}"
  10. settings = Settings()