File: settings.py

package info (click to toggle)
python-django-storages 1.13.2-1%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-proposed-updates
  • size: 860 kB
  • sloc: python: 3,990; makefile: 120; sh: 6
file content (12 lines) | stat: -rw-r--r-- 184 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
MEDIA_URL = '/media/'

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': ':memory:'
    }
}

SECRET_KEY = 'hailthesunshine'

USE_TZ = True