File: settings.py

package info (click to toggle)
django-measurement 3.2.4-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 164 kB
  • sloc: python: 600; makefile: 9
file content (15 lines) | stat: -rw-r--r-- 289 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
DATABASES = {"default": {"ENGINE": "django.db.backends.sqlite3", "NAME": ":memory:"}}

INSTALLED_APPS = (
    "django.contrib.auth",
    "django.contrib.contenttypes",
    "django_measurement",
    "tests",
)

SITE_ID = 1
ROOT_URLCONF = "core.urls"

SECRET_KEY = "foobar"

USE_L10N = True