-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings_dev.py
31 lines (23 loc) · 1.08 KB
/
settings_dev.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Django settings for sscadev project.
GOOGLE_MAPS_KEY = 'AIzaSyBAWy5kbUgK0t3Ly6VplTrem-dvpi-YuW8'
DEBUG = True
TEMPLATE_DEBUG = DEBUG
STATIC_ROOT = 'static'
# ------------ Braintree payments related keys start here ------------
import braintree
BTREE_ENVIRONMENT = braintree.Environment.Sandbox
BTREE_MERCHANT_ID = "qp96bcphs85fyjyq"
BTREE_PUBLIC_KEY = "ccsmkms74ymxhbxg"
BTREE_PRIVATE_KEY = "5227ce9f17856c06e877871eefb8e92a"
# ------------ Braintree payments keys end here ------------
SOUTH_TESTS_MIGRATE = False
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'ssca', # Or path to database file if using sqlite3.
'USER': 'ssca', # Not used with sqlite3.
'PASSWORD': 'ssca', # Not used with sqlite3.
'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '', # Set to empty string for default. Not used with sqlite3.
}
}