bok_choy.auth.json 3.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
{
    "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": "test",
            "host": [
                "localhost"
            ],
14
            "port": 27017
15 16 17 18 19 20 21
        },
        "ENGINE": "xmodule.contentstore.mongo.MongoContentStore",
        "OPTIONS": {
            "db": "test",
            "host": [
                "localhost"
            ],
22
            "port": 27017
23 24 25 26 27 28
        }
    },
    "DATABASES": {
        "default": {
            "ENGINE": "django.db.backends.mysql",
            "HOST": "localhost",
29
            "NAME": "edxtest",
30 31 32 33 34 35 36 37 38 39 40
            "PASSWORD": "",
            "PORT": "3306",
            "USER": "root"
        }
    },
    "DOC_STORE_CONFIG": {
        "collection": "modulestore",
        "db": "test",
        "host": [
            "localhost"
        ],
41
        "port": 27017
42 43 44
    },
    "MODULESTORE": {
        "default": {
45
            "ENGINE": "xmodule.modulestore.mixed.MixedModuleStore",
46
            "OPTIONS": {
47 48 49 50 51 52 53 54 55 56
                "mappings": {},
                "stores": [
                    {
                        "NAME": "draft",
                        "DOC_STORE_CONFIG": {
                            "collection": "modulestore",
                            "db": "test",
                            "host": [
                                "localhost"
                            ],
57
                            "port": 27017
58 59 60 61 62 63 64 65 66 67 68
                        },
                        "ENGINE": "xmodule.modulestore.mongo.DraftMongoModuleStore",
                        "OPTIONS": {
                            "collection": "modulestore",
                            "db": "test",
                            "default_class": "xmodule.hidden_module.HiddenDescriptor",
                            "fs_root": "** OVERRIDDEN **",
                            "host": [
                                "localhost"
                            ],
                            "port": 27017,
69
                            "render_template": "edxmako.shortcuts.render_to_string"
70 71 72 73 74 75 76 77 78 79 80
                        }
                    },
                    {
                        "NAME": "xml",
                        "ENGINE": "xmodule.modulestore.xml.XMLModuleStore",
                        "OPTIONS": {
                            "data_dir": "** OVERRIDDEN **",
                            "default_class": "xmodule.hidden_module.HiddenDescriptor"
                        }
                    }
                ]
81 82 83 84 85 86 87 88 89 90 91
            }
        }
    },
    "OPEN_ENDED_GRADING_INTERFACE": {
        "grading_controller": "grading_controller",
        "password": "password",
        "peer_grading": "peer_grading",
        "staff_grading": "staff_grading",
        "url": "http://localhost:18060/",
        "username": "lms"
    },
92 93 94 95 96 97 98
    "DJFS": {
            "type": "s3fs",
            "bucket": "test",
            "prefix": "test",
            "aws_access_key_id": "test",
            "aws_secret_access_key": "test"
    },
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
    "SECRET_KEY": "",
    "XQUEUE_INTERFACE": {
        "basic_auth": [
            "edx",
            "edx"
        ],
        "django_auth": {
            "password": "password",
            "username": "lms"
        },
        "url": "http://localhost:18040"
    },
    "ZENDESK_API_KEY": "",
    "ZENDESK_USER": ""
}