-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsettings.example.json
51 lines (51 loc) · 1.08 KB
/
settings.example.json
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
{
"public": {
"AUTH0": {
"CLIENT_ID": "EcVtt1PoK8fUDCf6paFeh3H6eFfQOtBa",
"DOMAIN": "totoom.eu.auth0.com",
"CALLBACK": "http://localhost:3000",
"AUDIENCE": "https://totoom.eu.auth0.com/userinfo"
},
"storagePath": "PATH_FOR_UPLOADS",
"i18n": {
"languages": [{
"text": "English",
"value": "en",
"isoflag": "us",
"file": "en.json"
}, {
"text": "Español",
"value": "es",
"isoflag": "es",
"file": "es.json"
}, {
"text": "Français",
"value": "fr",
"isoflag": "fr",
"file": "fr.json"
}, {
"text": "Deutsch",
"value": "de",
"isoflag": "de",
"file": "de.json"
}, {
"text": "Português",
"value": "pt",
"isoflag": "pt",
"file": "pt.json"
}, {
"text": "中文",
"value": "zh",
"isoflag": "zh",
"file": "zh.json"
}
],
"defaultLocale": "en"
}
},
"private": {
"i18n": {
"googleTranslateApiKey": ""
}
}
}