112 lines
2.8 KiB
Python
112 lines
2.8 KiB
Python
from regluit.settings.common import *
|
|
|
|
DEBUG = True
|
|
TEMPLATE_DEBUG = DEBUG
|
|
|
|
ADMINS = (
|
|
('Ed Summers', 'ehs@pobox.com'),
|
|
)
|
|
|
|
MANAGERS = ADMINS
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': 'regluit.db',
|
|
'USER': '',
|
|
'PASSWORD': '',
|
|
'HOST': '',
|
|
'PORT': '',
|
|
'TEST_CHARSET': 'utf8',
|
|
}
|
|
}
|
|
|
|
TIME_ZONE = 'America/New_York'
|
|
SECRET_KEY = '_^_off!8zsj4+)%qq623m&$7_m-q$iau5le0w!mw&n5tgt#x=t'
|
|
|
|
# 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'
|
|
|
|
# twitter auth
|
|
# you'll need to create a new Twitter application to fill in these blanks
|
|
# https://dev.twitter.com/apps/new
|
|
|
|
TWITTER_CONSUMER_KEY = ''
|
|
TWITTER_CONSUMER_SECRET = ''
|
|
|
|
# facebook auth
|
|
# you'll need to create a new Facebook application to fill in these blanks
|
|
# https://developers.facebook.com/apps/
|
|
|
|
FACEBOOK_APP_ID = ''
|
|
FACEBOOK_API_SECRET = ''
|
|
|
|
# google auth
|
|
# you'll need to create a new Google application to fill in these blanks
|
|
# https://code.google.com/apis/console/
|
|
GOOGLE_OAUTH2_CLIENT_ID = ''
|
|
GOOGLE_OAUTH2_CLIENT_SECRET = ''
|
|
GOOGLE_DISPLAY_NAME = 'unglue it!'
|
|
|
|
# you'll need to register a GoogleBooks API key
|
|
# https://code.google.com/apis/console
|
|
GOOGLE_BOOKS_API_KEY = ''
|
|
|
|
PAYPAL_USERNAME = ''
|
|
PAYPAL_PASSWORD = ''
|
|
PAYPAL_SIGNATURE = ''
|
|
PAYPAL_APPID = ''
|
|
|
|
PAYPAL_ENDPOINT = 'svcs.sandbox.paypal.com' # sandbox
|
|
PAYPAL_PAYMENT_HOST = 'http://www.sandbox.paypal.com' # sandbox
|
|
|
|
PAYPAL_SANDBOX_LOGIN = ''
|
|
PAYPAL_SANDBOX_PASSWORD = ''
|
|
|
|
PAYPAL_BUYER_LOGIN =''
|
|
PAYPAL_BUYER_PASSWORD = ''
|
|
|
|
# The amount of the transaction that Gluejar takes
|
|
GLUEJAR_COMMISSION = 0.06
|
|
PREAPPROVAL_PERIOD = 365 # days to ask for in a preapproval
|
|
PREAPPROVAL_PERIOD_AFTER_CAMPAIGN = 90 # if we ask for preapproval time after a campaign deadline
|
|
|
|
# in live system, replace with the real Gluejar paypal email and that for our non-profit partner
|
|
PAYPAL_GLUEJAR_EMAIL = "glueja_1317336101_biz@gluejar.com"
|
|
PAYPAL_NONPROFIT_PARTNER_EMAIL = "nppart_1318957063_per@gluejar.com"
|
|
|
|
# for test purposes have a single RH paypal email
|
|
PAYPAL_TEST_RH_EMAIL = "rh1_1317336251_biz@gluejar.com"
|
|
|
|
BASE_URL = 'http://0.0.0.0'
|
|
|
|
# use database as queuing service in development
|
|
BROKER_TRANSPORT = "djkombu.transport.DatabaseTransport"
|
|
INSTALLED_APPS += ("djkombu",)
|
|
|
|
# Goodreads API
|
|
GOODREADS_API_KEY = ''
|
|
GOODREADS_API_SECRET = ''
|
|
|
|
# LibraryThing API
|
|
LIBRARYTHING_API_KEY = ''
|
|
|
|
# Freebase credentials
|
|
FREEBASE_USERNAME = ''
|
|
FREEBASE_PASSWORD = ''
|
|
|
|
# send celery log to Python logging
|
|
CELERYD_HIJACK_ROOT_LOGGER = False
|
|
|
|
# a debug_toolbar setting
|
|
INTERNAL_IPS = ('127.0.0.1',)
|
|
|
|
CELERYD_LOG_LEVEL = "INFO"
|