This repository was archived by the owner on May 1, 2024. It is now read-only.
File tree Expand file tree Collapse file tree
analyticsdataserver/settings Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020########## DEBUG CONFIGURATION
2121# See: https://docs.djangoproject.com/en/dev/ref/settings/#debug
2222DEBUG = False
23-
24- # See: https://docs.djangoproject.com/en/dev/ref/settings/#template-debug
25- TEMPLATE_DEBUG = DEBUG
2623########## END DEBUG CONFIGURATION
2724
2825
150147 'APP_DIRS' : True ,
151148 'OPTIONS' : {
152149 'context_processors' : [
153- # Insert your TEMPLATE_CONTEXT_PROCESSORS here or use this
154- # list if you haven't customized them:
155150 'django.contrib.auth.context_processors.auth' ,
156151 'django.template.context_processors.debug' ,
157152 'django.template.context_processors.i18n' ,
Original file line number Diff line number Diff line change 99########## DEBUG CONFIGURATION
1010# See: https://docs.djangoproject.com/en/dev/ref/settings/#debug
1111DEBUG = True
12-
13- # See: https://docs.djangoproject.com/en/dev/ref/settings/#template-debug
14- TEMPLATE_DEBUG = DEBUG
1512########## END DEBUG CONFIGURATION
1613
1714
6663SWAGGER_SETTINGS = {
6764 'api_key' : 'edx'
6865}
66+
67+ # Default elasticsearch port when running locally
68+ ELASTICSEARCH_LEARNERS_HOST = 'http://localhost:9223/'
69+ ELASTICSEARCH_LEARNERS_INDEX = 'roster_test'
70+ ELASTICSEARCH_LEARNERS_UPDATE_INDEX = 'index_update_test'
You can’t perform that action at this time.
0 commit comments