meal_homework/mealapi/utils/config.py
Torma Kristóf c20b5f7c98
All checks were successful
continuous-integration/drone/push Build is passing
lowecase
2022-02-13 20:39:14 +01:00

12 lines
302 B
Python

#!/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