File: settings.py

package info (click to toggle)
python-django-pgbulk 3.2.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 540 kB
  • sloc: python: 1,814; makefile: 101; sh: 9
file content (20 lines) | stat: -rw-r--r-- 381 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import os

import dj_database_url


SECRET_KEY = "django-pgbulk"
# Install the tests as an app so that we can make test models
INSTALLED_APPS = [
    "pgbulk",
    "pgbulk.tests",
]

# Database url comes from the DATABASE_URL env var
DATABASES = {"default": dj_database_url.config()}

DEFAULT_AUTO_FIELD = "django.db.models.AutoField"

USE_TZ = False

DJANGO_HASHIDS_SALT = "salt"