2011-10-07 03:14:29 +00:00
|
|
|
from regluit.settings.common import *
|
|
|
|
|
2011-11-17 23:05:01 +00:00
|
|
|
DEBUG = False
|
2011-10-07 03:14:29 +00:00
|
|
|
TEMPLATE_DEBUG = DEBUG
|
2012-01-15 20:37:08 +00:00
|
|
|
IS_PREVIEW = True
|
2011-10-07 03:14:29 +00:00
|
|
|
|
2011-12-28 17:28:48 +00:00
|
|
|
SITE_ID = 2
|
|
|
|
|
2011-10-07 03:14:29 +00:00
|
|
|
ADMINS = (
|
2011-11-18 16:37:05 +00:00
|
|
|
('Ed Summers', 'ed.summers@gmail.com'),
|
2011-10-17 18:06:11 +00:00
|
|
|
('Raymond Yee', 'rdhyee+ungluebugs@gluejar.com'),
|
2011-11-14 16:36:38 +00:00
|
|
|
('Eric Hellman', 'eric@gluejar.com'),
|
|
|
|
('Andromeda Yelton', 'andromeda@gluejar.com'),
|
2011-10-07 03:14:29 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
MANAGERS = ADMINS
|
|
|
|
|
|
|
|
DATABASES = {
|
|
|
|
'default': {
|
|
|
|
'ENGINE': 'django.db.backends.mysql',
|
2012-01-15 20:37:08 +00:00
|
|
|
'NAME': 'unglueit',
|
2012-01-15 22:14:45 +00:00
|
|
|
'USER': 'root',
|
|
|
|
'PASSWORD': 'unglue1t',
|
2012-01-15 20:37:08 +00:00
|
|
|
'HOST': 'production.cboagmr25pjs.us-east-1.rds.amazonaws.com',
|
2011-10-07 03:14:29 +00:00
|
|
|
'PORT': '',
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TIME_ZONE = 'America/New_York'
|
|
|
|
SECRET_KEY = '_^_off!8zsj4+)%qq623m&$7_m-q$iau5le0w!mw&n5tgt#x=t'
|
|
|
|
|
2011-11-20 14:51:19 +00:00
|
|
|
# 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 = 'accounts@gluejar.com'
|
|
|
|
EMAIL_HOST_PASSWORD = '7k3sWyzHpI'
|
|
|
|
EMAIL_PORT = 587
|
|
|
|
DEFAULT_FROM_EMAIL = 'accounts@gluejar.com'
|
2011-10-07 03:14:29 +00:00
|
|
|
|
2011-10-10 20:40:19 +00:00
|
|
|
# googlebooks
|
|
|
|
GOOGLE_BOOKS_API_KEY = 'AIzaSyBE36z7o6NUafIWcLEB8yk2I47-8_5y1_0'
|
|
|
|
|
2011-10-07 03:14:29 +00:00
|
|
|
# twitter auth
|
|
|
|
TWITTER_CONSUMER_KEY = 'sd9StEg1N1qB8gGb2GRX4A'
|
|
|
|
TWITTER_CONSUMER_SECRET = 'YSKHn8Du6EWqpcWZ6sp5tqDPvcOBXK0WJWVGWyB0'
|
|
|
|
|
|
|
|
# facebook auth
|
2012-01-15 23:04:32 +00:00
|
|
|
FACEBOOK_APP_ID = '211951285561911'
|
|
|
|
FACEBOOK_API_SECRET = '42efef7e540b80479dbbb69490cd902a'
|
2011-10-07 03:14:29 +00:00
|
|
|
|
|
|
|
# google auth
|
|
|
|
GOOGLE_OAUTH2_CLIENT_ID = '989608723367.apps.googleusercontent.com'
|
|
|
|
GOOGLE_OAUTH2_CLIENT_SECRET = '3UqalKyNynnaaarumUIWh8vS'
|
|
|
|
GOOGLE_DISPLAY_NAME = 'unglue it!'
|
2011-10-20 04:36:41 +00:00
|
|
|
|
2011-11-22 22:31:20 +00:00
|
|
|
# credentials from a sandbox account that Raymond set up.
|
|
|
|
PAYPAL_USERNAME = 'glueja_1317336101_biz_api1.gluejar.com'
|
|
|
|
PAYPAL_PASSWORD = '1317336137'
|
|
|
|
PAYPAL_SIGNATURE = 'AHVb0D1mzGD6zdX4XtKZbH.Kd6OhALVyiJVbNReOZEfyz79AoEnQJWTR'
|
|
|
|
PAYPAL_APPID = 'APP-80W284485P519543T' # sandbox app id -- will have to replace with production id
|
2011-10-20 04:36:41 +00:00
|
|
|
|
|
|
|
PAYPAL_ENDPOINT = 'svcs.sandbox.paypal.com' # sandbox
|
2011-11-09 18:22:23 +00:00
|
|
|
PAYPAL_PAYMENT_HOST = 'https://www.sandbox.paypal.com' # sandbox
|
2011-10-20 04:36:41 +00:00
|
|
|
|
|
|
|
PAYPAL_SANDBOX_LOGIN = ''
|
|
|
|
PAYPAL_SANDBOX_PASSWORD = ''
|
|
|
|
|
|
|
|
PAYPAL_BUYER_LOGIN =''
|
|
|
|
PAYPAL_BUYER_PASSWORD = ''
|
|
|
|
|
2011-12-19 23:34:30 +00:00
|
|
|
# The amount of the transaction that Gluejar takes
|
|
|
|
GLUEJAR_COMMISSION = 0.06
|
|
|
|
PREAPPROVAL_PERIOD = 365 # days to ask for in a preapproval
|
2011-12-20 19:56:01 +00:00
|
|
|
PREAPPROVAL_PERIOD_AFTER_CAMPAIGN = 90 # if we ask for preapproval time after a campaign deadline
|
2011-12-19 23:34:30 +00:00
|
|
|
|
2011-12-03 00:37:27 +00:00
|
|
|
# in live system, replace with the real Gluejar paypal email and that for our non-profit partner
|
2011-11-23 00:03:05 +00:00
|
|
|
PAYPAL_GLUEJAR_EMAIL = "glueja_1317336101_biz@gluejar.com"
|
2011-12-03 00:37:27 +00:00
|
|
|
PAYPAL_NONPROFIT_PARTNER_EMAIL = "nppart_1318957063_per@gluejar.com"
|
2011-10-20 04:36:41 +00:00
|
|
|
|
|
|
|
# for test purposes have a single RH paypal email
|
|
|
|
PAYPAL_TEST_RH_EMAIL = "rh1_1317336251_biz@gluejar.com"
|
|
|
|
|
2011-11-11 22:33:58 +00:00
|
|
|
# Goodreads API
|
|
|
|
GOODREADS_API_KEY = "vfqIO6QAhBVvlxt6hAzZJg"
|
|
|
|
GOODREADS_API_SECRET = "57tq4MpyJ15Hgm2ToZQQFWJ7vraZzOAqHLckWRXQ"
|
|
|
|
|
|
|
|
# Freebase credentials
|
|
|
|
FREEBASE_USERNAME = ''
|
|
|
|
FREEBASE_PASSWORD = ''
|
|
|
|
|
|
|
|
# send celery log to Python logging
|
|
|
|
CELERYD_HIJACK_ROOT_LOGGER = False
|
2011-11-23 00:21:38 +00:00
|
|
|
|
2011-11-23 00:57:54 +00:00
|
|
|
# BASE_URL is a hard-coding of the domain name for site and used for PayPal IPN
|
2011-11-23 00:21:38 +00:00
|
|
|
# Next step to try https
|
2012-01-15 23:11:53 +00:00
|
|
|
BASE_URL = 'http://unglueit.com'
|
2011-10-20 04:36:41 +00:00
|
|
|
|
2011-10-20 05:18:04 +00:00
|
|
|
# use redis for production queue
|
|
|
|
BROKER_TRANSPORT = "redis"
|
|
|
|
BROKER_HOST = "localhost"
|
|
|
|
BROKER_PORT = 6379
|
|
|
|
BROKER_VHOST = "0"
|
2011-11-17 23:05:01 +00:00
|
|
|
|
|
|
|
LOGGING = {
|
|
|
|
'version': 1,
|
|
|
|
'disable_existing_loggers': True,
|
|
|
|
'handlers': {
|
|
|
|
'mail_admins': {
|
|
|
|
'level': 'ERROR',
|
|
|
|
'class': 'django.utils.log.AdminEmailHandler'
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'loggers': {
|
|
|
|
'django.request': {
|
|
|
|
'handlers': ['mail_admins'],
|
|
|
|
'level': 'ERROR',
|
|
|
|
'propagate': True,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-18 16:37:05 +00:00
|
|
|
STATIC_ROOT = '/var/www/static'
|