You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
from .base import *
|
|
|
|
|
|
DATABASES = {
|
|
|
'default': {
|
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
|
'NAME': 'db.sqlite3',
|
|
|
'USER': '',
|
|
|
'PASSWORD': '',
|
|
|
'HOST': '',
|
|
|
'PORT': '',
|
|
|
}
|
|
|
}
|
|
|
|
|
|
DEBUG = True
|
|
|
TEMPLATES[0]["OPTIONS"]["debug"] = True
|
|
|
|
|
|
WEASYPRINT_URL = 'http://localhost:5005'
|
|
|
WEASYPRINT_CSS_LOOPBACK = 'http://10.200.10.1:8000'
|
|
|
|
|
|
DEPLOYMENT_TYPE = 'localdev'
|
|
|
REGISTER_URL = '#'
|