forked from ccnmtl/mediathread
-
Notifications
You must be signed in to change notification settings - Fork 1
/
sample_deploy_specific_settings.py
44 lines (31 loc) · 1.28 KB
/
sample_deploy_specific_settings.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
32
33
34
35
36
37
38
39
40
41
42
43
44
#Put this file in deploy_specific/settings.py
#if you actually have template overrides or your own views, etc.
#EXTRA_INSTALLED_APPS = (
# 'mediathread.deploy_specific',
# )
ADMINS = (
('YOUR_GROUP', 'mediathread-sysadmin@example.edu'),
)
#SERVER_EMAIL = "mediathread@example.com"
#PUBLIC_CONTACT_EMAIL = "mediathread@example.com"
#developer IPs
INTERNAL_IPS = (,)
#custom authentication module
#AUTHENTICATION_BACKENDS = ('django.contrib.auth.backends.ModelBackend',)
TIME_ZONE = 'America/New_York'
LANGUAGE_CODE = 'en-us'
#http://docs.djangoproject.com/en/dev/ref/settings/#secret-key
SECRET_KEY = ''
#get your own course string mapper that works with your group's
# custom authentication app (presumably auto-creating/auto-adding groups)
#from courseaffils.columbia import CourseStringMapper
#COURSEAFFILS_COURSESTRING_MAPPER = CourseStringMapper
#This variable is for DRMy URLs which will be generated on the fly
#when the asset is displayed. See assetmgr/models.py
#arguments are (source, request)
# and the processed Source URL should be returned
#ASSET_URL_PROCESSOR = some_url_processor
#These are used for supporting flickr in the bookmarklet and
#using flowplayer to show flash-supported video (h264,flv,rtmp)
#DJANGOSHERD_FLICKR_APIKEY = ''
#FLOWPLAYER_SWF_LOCATION = ""