7 lines
163 B
Python
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" |