-
Notifications
You must be signed in to change notification settings - Fork 1
/
imath.edx.vars
102 lines (72 loc) · 2.25 KB
/
imath.edx.vars
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# file imath.edx.vars
######################
# This if a file of the variables which are interesting for us.
# These were copy-pasted from the 'vars' folders from the different roles
#
# Our priorities are:
# * TimeZone
# * email
# * Passwords (maybe in separate file in secure_dir?)
# (* of course theming, but this can be in a separate task independent of the setup.)
#
#
######################
# Timezone
'TIME_ZONE': 'Europe/Zurich' # HERE
# Email
notifier_env: "Development"
notifier_email_backend: "console" # would like smtp
notifier_email_host: "localhost"
# password related stuff
'XQUEUE_INTERFACE':
'basic_auth': [ 'edx', 'edx']
'django_auth': { 'password': 'Test123.', # HERE
'username': 'lms'}
'url': 'https://localhost:18040'
'CONTENTSTORE':
'ENGINE': 'xmodule.contentstore.mongo.MongoContentStore'
'OPTIONS':
'db': 'edxapp'
'host': [ 'localhost' ]
'password': 'Test123.' # HERE
'port': 27017
'user': 'mongo'
'MODULESTORE':
'default':
'ENGINE': 'xmodule.modulestore.mongo.DraftMongoModuleStore'
'OPTIONS': &generic_modulestore_default_options
'collection': 'modulestore'
'db': 'edxapp'
'default_class': 'xmodule.hidden_module.HiddenDescriptor'
'fs_root': '/opt/wwc/data'
'host': [ 'localhost' ]
'password': 'Test123.' # HERE
'port': 27017
'render_template': 'mitxmako.shortcuts.render_to_string'
'user': 'mongo'
# Needed for the CMS to be able to run update_templates
'direct':
'ENGINE': 'xmodule.modulestore.mongo.MongoModuleStore'
'OPTIONS': *generic_modulestore_default_options
'DATABASES':
'default':
'ENGINE': 'django.db.backends.mysql'
'NAME': 'edxapp'
'USER': 'root'
'PASSWORD': 'Test123.' # HERE
# Provide the name of a host running mysql.
'HOST': 'localhost'
'PORT': '3306'
'CELERY_BROKER_USER': 'celery'
'CELERY_BROKER_PASSWORD': '' # DOWENEEDTHIS
'SYSLOG_SERVER': ''
'SITE_NAME': 'edx1.math.uzh.ch'
'LOG_DIR': '/var/log/edx'
'CELERY_BROKER_TRANSPORT': 'amqp'
'CELERY_BROKER_HOSTNAME': ''
'COMMENTS_SERVICE_URL': 'http://localhost:4567'
'COMMENTS_SERVICE_KEY': 'Test123.' # HERE
# here be theming
edxapp_theme_name: 'stanford'
edxapp_theme_source_repo: 'https://github.com/Stanford-Online/edx-theme.git'
edxapp_theme_version: 'HEAD'