-
Notifications
You must be signed in to change notification settings - Fork 0
/
local_settings.py.template
59 lines (43 loc) · 1.61 KB
/
local_settings.py.template
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
DEBUG = False
SSL_ENABLED = True
# Make this unique, and don't share it with anybody.
SECRET_KEY = ''
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'fitcompetition', # Or path to database file if using sqlite3.
'USER': '', # Not used with sqlite3.
'PASSWORD': '', # 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.
'STORAGE_ENGINE': 'MyISAM',
}
}
#run 'locale -a' in terminal and select one.
LOCALE = 'en_US.utf8'
#this is used in the instructions for putting money in the pot.
PAYPAL_ACCOUNT_EMAIL = ''
SERVER_EMAIL = ''
EMAIL_BACKEND = ''
AWS_ACCESS_KEY_ID = ''
AWS_SECRET_ACCESS_KEY = ''
AWS_STORAGE_BUCKET_NAME = ''
MAILCHIMP_API_KEY = ''
MAILCHIMP_LIST_ID = ''
SOCIAL_AUTH_RUNKEEPER_KEY = ''
SOCIAL_AUTH_RUNKEEPER_SECRET = ''
SOCIAL_AUTH_MAPMYFITNESS_KEY = ''
SOCIAL_AUTH_MAPMYFITNESS_SECRET = ''
SOCIAL_AUTH_STRAVA_KEY = ''
SOCIAL_AUTH_STRAVA_SECRET = ''
#The unique identifier for your website as registered on Disqus. If undefined, the Disqus embed will not load.
DISQUS_SHORTNAME = ""
# Hosts/domain names that are valid for this site; required if DEBUG is False
# See https://docs.djangoproject.com/en/1.5/ref/settings/#allowed-hosts
ALLOWED_HOSTS = []
BASE_URL = 'http://localhost'
DEBUG_TOOLBAR_PATCH_SETTINGS = False
#celery broker (RabbitMQ)
BROKER_URL = "amqp://"
# GOOGLE_ANALYTICS_TRACKING_ID = 'UA-15696857-1'
GOOGLE_ANALYTICS_TRACKING_ID = ''