-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproj_config.json
More file actions
59 lines (59 loc) · 1.85 KB
/
proj_config.json
File metadata and controls
59 lines (59 loc) · 1.85 KB
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
54
55
56
57
58
59
{
"systemUrl": "https://courses-redishko.c9users.io/",
"logger": {
"level": "debug",
"file": "./output.log"
},
"cookie": {
"secret": "its-a-secret",
"ttl": 14
},
"uploads": {
"tmpdir": "./uploads",
"limit": 10,
"cleanup": 60
},
"mongoose": {
"uri": "mongodb://nikolayemrikh:789pp369@ds017070.mlab.com:17070/d3jsdb"
},
"auth": {
"vk": {
"authorizationURL": "https://oauth.vk.com/authorize",
"clientID": "5824763",
"clientSecret": "JsLUk77xUiJf61nwcTEt",
"tokenURL": "https://oauth.vk.com/access_token",
"callbackURL": "https://courses-redishko.c9users.io/api/user/vk/callback"
},
"github": {
"clientID": "f3ea15eaa26028b1974e",
"clientSecret": "d8179ed51f974514ece94b9fab2a54b4cf8f598b",
"callbackURL": "https://courses-redishko.c9users.io/api/user/github/callback",
"userAgent": "NE-LMS"
},
"bitbucket": {
"clientID": "Vz6DWTZLbAhVanawDp",
"clientSecret": "68g9k7nLdE44ff7vExELdNyYBwtSMGNm",
"callbackURL": "https://courses-redishko.c9users.io/api/user/bitbucket/callback",
"userAgent": "NE-LMS"
}
},
"courses": {
"repPath": "./static/courses",
"dirNameTemplate": {
"pattern": "^(\\d+)",
"flags": "gm"
},
"authorUsernameDelimiter": "@",
"initialFilesDir": "initial",
"initialHtmlFile": "index.html",
"initialCssFile": "style.css",
"initialJsFile": "script.js",
"initialQuestionsFile": "questions.json",
"metaFile": "meta.json",
"solutionFile": "solution.html",
"theoryFile": "theory.html",
"checkerFile": "check.js",
"goalsFile": "goals.html",
"filesDirName": "files"
}
}