Files
URL-shortener/app/settings.py
T

7 lines
163 B
Python

# app/settings.py
import os
# Example configuration
database_url = os.getenv("DATABASE_URL", "sqlite:///default.db")
debug = os.getenv("DEBUG", "True") == "True"