meal_homework/mealapi/utils/config.py

12 lines
302 B
Python
Raw Permalink Normal View History

2022-02-13 20:38:02 +01:00
#!/usr/bin/env python3
import os
class Config:
PORT = 8080
DEBUG = os.environ.get("INPUT_SERVICE_DEBUG", "true").lower() in ["true", "yes", "1"]
SQLALCHEMY_DATABASE_URI = os.environ.get('DATABASE_URI')
# disable this for better performance
SQLALCHEMY_TRACK_MODIFICATIONS = False