6
0
mirror of https://github.com/ChristianLight/tutor.git synced 2024-11-14 17:24:08 +00:00
tutor/edxapp/config/templates/cms.auth.json.templ

36 lines
885 B
Plaintext
Raw Normal View History

2017-07-03 10:39:19 +00:00
{
"SECRET_KEY": "${SECRET_KEY}",
2017-07-03 10:39:19 +00:00
"AWS_ACCESS_KEY_ID": "",
"AWS_SECRET_ACCESS_KEY": "",
"XQUEUE_INTERFACE": {
"basic_auth": ["edx", "edx"],
"django_auth": {
"username": "lms",
"password": "password"
},
"url": "http://localhost:18040"
},
"CONTENTSTORE": {
"ENGINE": "xmodule.contentstore.mongo.MongoContentStore",
"DOC_STORE_CONFIG": {
2017-12-26 00:16:35 +00:00
"db": "${MONGODB_DATABASE}",
2017-07-03 10:39:19 +00:00
"host": "mongodb"
}
},
"DOC_STORE_CONFIG": {
"db": "edxapp",
"host": "mongodb"
},
"DATABASES": {
"default": {
"ENGINE": "django.db.backends.mysql",
2017-12-26 00:16:35 +00:00
"NAME": "${MYSQL_DATABASE}",
"USER": "${MYSQL_USERNAME}",
"PASSWORD": "${MYSQL_PASSWORD}",
2017-07-03 10:39:19 +00:00
"HOST": "mysql",
"PORT": "3306",
"ATOMIC_REQUESTS": true
}
2017-07-19 07:25:33 +00:00
}
2017-07-03 10:39:19 +00:00
}