polyphonic/docker_settings.py

14 lines
269 B
Python

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