polyphonic/docker_settings.py
2026-05-22 23:51:25 +10:00

12 lines
222 B
Python

from .default_settings import *
import os
DEBUG = bool(os.environ.get("DEBUG", False))
DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": "/var/polyphonic/db.sqlite3",
}
}