mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 16:12:51 +11:00
17 lines
353 B
Python
17 lines
353 B
Python
from pastebin.conf.settings import *
|
|
|
|
DEBUG = True
|
|
TEMPLATE_DEBUG = DEBUG
|
|
|
|
ROOT_URLCONF = 'pastebin.conf.dev.urls'
|
|
|
|
MEDIA_ROOT = os.path.join(VAR_ROOT, 'uploads')
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
|
'NAME': 'pastebin',
|
|
# 'USER': 'dbuser',
|
|
# 'PASSWORD': 'dbpassword',
|
|
}
|
|
}
|