mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-14 09:14:14 +00:00
04a0fb5902
Template files are now directly loaded in the configurator container, so that it is possible to run the configurator container directly, outside of this project.
35 lines
904 B
JSON
35 lines
904 B
JSON
{
|
|
"SECRET_KEY": "{{ SECRET_KEY }}",
|
|
"AWS_ACCESS_KEY_ID": "",
|
|
"AWS_SECRET_ACCESS_KEY": "",
|
|
"XQUEUE_INTERFACE": {
|
|
"django_auth": {
|
|
"username": "{{ XQUEUE_AUTH_USERNAME }}",
|
|
"password": "{{ XQUEUE_AUTH_PASSWORD }}"
|
|
},
|
|
"url": "http://xqueue:8040"
|
|
},
|
|
"CONTENTSTORE": {
|
|
"ENGINE": "xmodule.contentstore.mongo.MongoContentStore",
|
|
"DOC_STORE_CONFIG": {
|
|
"db": "{{ MONGODB_DATABASE }}",
|
|
"host": "mongodb"
|
|
}
|
|
},
|
|
"DOC_STORE_CONFIG": {
|
|
"db": "openedx",
|
|
"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
|
|
}
|
|
}
|
|
}
|