regluit/settings/jenkins.py

55 lines
1.2 KiB
Python
Raw Permalink 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': '',
'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
DEFAULT_FROM_EMAIL = 'info@gluejar.com'
# 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",)