config.py.sample 214 B

1234567891011
  1. # config.py
  2. class Config:
  3. DEBUG = False
  4. BASE_URL = '' # Set your base URL here
  5. class DevelopmentConfig(Config):
  6. DEBUG = True
  7. class ProductionConfig(Config):
  8. BASE_URL = '' # Production base URL