File: __init__.py

package info (click to toggle)
django-ranged-response 0.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 132 kB
  • sloc: python: 150; makefile: 4
file content (10 lines) | stat: -rw-r--r-- 217 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
from django.conf import settings


# Make sure django can initialize for testing.
settings.configure(DATABASES={
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': 'db.sqlite3',
    }
})