-
Notifications
You must be signed in to change notification settings - Fork 11
/
config.json.sample
53 lines (53 loc) · 1.12 KB
/
config.json.sample
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
{
"django_setup": {
"SECRET_KEY": "random_secret_that_you_should_change_on_production",
"DEBUG": false,
"ALLOWED_HOSTS": [
"localhost"
],
"CSRF_TRUSTED_ORIGINS": [
"http://localhost"
]
},
"sso": {
"googleapi": {
"SOCIAL_AUTH_GOOGLE_OAUTH2_KEY": "",
"SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET": ""
}
},
"database": {
"engine": "sqlite3",
"dbname": "",
"username": "",
"password": "",
"host": "",
"port": 3306
},
"access_modules": {
"git_urls": [
"https://github.com/browserstack/enigma-access-modules.git"
]
},
"enigmaGroup": {
"MAIL_APPROVER_GROUPS": []
},
"emails": {
"access-approve": "",
"EMAIL_HOST": "",
"EMAIL_PORT": "",
"EMAIL_HOST_USER": "",
"EMAIL_HOST_PASSWORD": "",
"EMAIL_USE_TLS": true,
"EMAIL_USE_SSL": false,
"DEFAULT_FROM_EMAIL": ""
},
"background_task_manager": {
"type": "celery",
"config": {
"broker": "<celery-broker-url>",
"backend": "<celery-result-backend-url>",
"need_monitoring": true,
"monitoring_apps": "django_celery_results"
}
}
}