regluit/settings/jenkins.py

57 lines
1.2 KiB
Python
Raw Normal View History

2016-12-20 19:43:16 +00:00
# coding=utf-8
from .common import *
DEBUG = True
TEMPLATES[0]['OPTIONS']['debug'] = DEBUG
2012-10-15 15:55:44 +00:00
IS_PREVIEW = False
ADMINS = (
('Raymond Yee', 'rdhyee+ungluebugs@gluejar.com'),
('Eric Hellman', 'eric@gluejar.com'),
)
MANAGERS = ADMINS
DATABASES = {
'default': {
2011-11-21 17:38:24 +00:00
'ENGINE': 'django.db.backends.mysql',
'NAME': 'regluit',
2011-11-21 20:08:44 +00:00
'USER': 'regluit',
'PASSWORD': 'regluit',
'HOST': '',
'PORT': '',
2018-04-20 01:19:40 +00:00
'TEST': {
'CHARSET': 'utf8',
}
}
}
TIME_ZONE = 'America/New_York'
# settings for outbout email
# if you have a gmail account you can use your email address and password
EMAIL_USE_TLS = True
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_HOST_USER = 'me@gmail.com'
EMAIL_HOST_PASSWORD = 'my-password'
EMAIL_PORT = 587
2017-11-18 21:34:56 +00:00
DEFAULT_FROM_EMAIL = 'info@ebookfoundation.org'
# formerly of settings/common.py to surface old vars
# TO DO: invalidate before we open source
2016-12-31 04:06:18 +00:00
# for use with test google account only
GOOGLE_DISPLAY_NAME = 'Unglue.It'
REDIRECT_IS_HTTPS = False
#BASE_URL = 'http://0.0.0.0/'
BASE_URL_SECURE = 'http://0.0.0.0/'
2011-10-20 05:19:19 +00:00
2011-10-20 05:19:19 +00:00
# use database as queuing service in development
BROKER_TRANSPORT = "djkombu.transport.DatabaseTransport"
#INSTALLED_APPS += ("djkombu",)