bok_choy.auth.json 3.56 KB
Newer Older
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
{
    "ANALYTICS_API_KEY": "",
    "AWS_ACCESS_KEY_ID": "",
    "AWS_SECRET_ACCESS_KEY": "",
    "CELERY_BROKER_PASSWORD": "celery",
    "CELERY_BROKER_USER": "celery",
    "CONTENTSTORE": {
        "DOC_STORE_CONFIG": {
            "collection": "modulestore",
            "db": "edxapp",
            "host": [
                "localhost"
            ],
            "password": "password",
            "port": 27017,
            "user": "edxapp"
        },
        "ENGINE": "xmodule.contentstore.mongo.MongoContentStore",
        "OPTIONS": {
            "db": "edxapp",
            "host": [
                "localhost"
            ],
            "password": "password",
            "port": 27017,
            "user": "edxapp"
        }
    },
    "DATABASES": {
        "default": {
            "ENGINE": "django.db.backends.mysql",
            "HOST": "localhost",
            "NAME": "test",
            "PASSWORD": "",
            "PORT": "3306",
            "USER": "root"
        }
    },
    "DOC_STORE_CONFIG": {
        "collection": "modulestore",
        "db": "test",
        "host": [
            "localhost"
        ],
        "password": "password",
        "port": 27017,
        "user": "edxapp"
    },
    "MODULESTORE": {
        "default": {
            "ENGINE": "xmodule.modulestore.mixed.MixedModuleStore",
            "OPTIONS": {
                "mappings": {},
54
                "reference_type": "Location",
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
                "stores": {
                    "default": {
                        "DOC_STORE_CONFIG": {
                            "collection": "modulestore",
                            "db": "test",
                            "host": [
                                "localhost"
                            ],
                            "password": "password",
                            "port": 27017,
                            "user": "edxapp"
                        },
                        "ENGINE": "xmodule.modulestore.mongo.MongoModuleStore",
                        "OPTIONS": {
                            "collection": "modulestore",
                            "db": "test",
                            "default_class": "xmodule.hidden_module.HiddenDescriptor",
                            "fs_root": "** OVERRIDDEN **",
                            "host": [
                                "localhost"
                            ],
                            "password": "password",
                            "port": 27017,
                            "render_template": "edxmako.shortcuts.render_to_string",
                            "user": "edxapp"
                        }
                    },
                    "xml": {
                        "ENGINE": "xmodule.modulestore.xml.XMLModuleStore",
                        "OPTIONS": {
                            "data_dir": "** OVERRIDDEN **",
                            "default_class": "xmodule.hidden_module.HiddenDescriptor"
                        }
                    }
                }
            }
        }
    },
    "OPEN_ENDED_GRADING_INTERFACE": {
        "grading_controller": "grading_controller",
        "password": "password",
        "peer_grading": "peer_grading",
        "staff_grading": "staff_grading",
98
        "url": "** OVERRIDDEN **",
99 100 101 102 103 104 105 106 107 108 109 110
        "username": "lms"
    },
    "SECRET_KEY": "",
    "XQUEUE_INTERFACE": {
        "basic_auth": [
            "edx",
            "edx"
        ],
        "django_auth": {
            "password": "password",
            "username": "lms"
        },
111
        "url": "** OVERRIDDEN **"
112 113 114 115
    },
    "ZENDESK_API_KEY": "",
    "ZENDESK_USER": ""
}