mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-15 01:34:14 +00:00
36 lines
898 B
Plaintext
36 lines
898 B
Plaintext
{
|
|
"SECRET_KEY": "${SECRET_KEY}",
|
|
"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": {
|
|
"db": "${MONGODB_DATABASE}",
|
|
"host": "mongodb"
|
|
}
|
|
},
|
|
"DOC_STORE_CONFIG": {
|
|
"db": "${MONGODB_DATABASE}",
|
|
"host": "mongodb"
|
|
},
|
|
"DATABASES": {
|
|
"default": {
|
|
"ENGINE": "django.db.backends.mysql",
|
|
"NAME": "${MYSQL_DATABASE}",
|
|
"USER": "${MYSQL_USERNAME}",
|
|
"PASSWORD": "${MYSQL_PASSWORD}",
|
|
"HOST": "mysql",
|
|
"PORT": "3306",
|
|
"ATOMIC_REQUESTS": true
|
|
}
|
|
}
|
|
}
|