-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconf.js
More file actions
115 lines (115 loc) · 3.28 KB
/
conf.js
File metadata and controls
115 lines (115 loc) · 3.28 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
module.exports = {
"twit": {
"consumerKey": 'Er2ax9j6DpI3YX6GLcffsQ',
"consumerSecret": 'JpOmapaL29ExSL9LBtfB8dYOQND4JwsrN326CTv38'
},
"logger": {
"file" : {
"filename": 'log.log'
},
"loggly": {
"subdomain": "adifah",
"inputToken": "55284070-4d63-418e-be8c-f84f9465c357",
"json": true
}
},
"gpsQuestioning": {
"level1" : {
"level" : 1,
"options" : 10,
"pointsForCorrectCountry" : 200,
"pointsForFail" : -50,
"pointsRequired" : 0
},
"level2" : {
"level" : 2,
"options" : 10,
"pointsForCorrectCountry" : 200,
"pointsForFail" : -50,
"pointsRequired" : 500
},
"level3" : {
"level" : 3,
"options" : 14,
"pointsForCorrectCountry" : 200,
"pointsForFail" : -50,
"pointsRequired" : 1000
}
},
"memorize": {
"level1" : {
"level": 1,
"pairs": 5,
"firstCard": "flag",
"secondCard": "flag",
"pointsRequired": 0,
"pointsForMatch": 100,
"pointsForFail": -50
},
"level2" : {
"level": 2,
"pairs": 8,
"firstCard": "flag",
"secondCard": "name",
"pointsRequired": 500,
"pointsForMatch": 100,
"pointsForFail": -50
},
"level3" : {
"level": 3,
"pairs": 8,
"firstCard": "flag",
"secondCard": "capital",
"pointsRequired": 1300,
"pointsForMatch": 100,
"pointsForFail": -50
},
"countries" : [
{
"name": "Germany",
"flag": "/images/flags/Germany.png",
"capital": "Berlin"
},
{
"name": "France",
"flag": "/images/flags/France.png",
"capital": "Paris"
},
{
"name": "Italy",
"flag": "/images/flags/Italien.png",
"capital": "Rome"
},
{
"name": "Belgium",
"flag": "/images/flags/Belgium.png",
"capital": "Brussels"
},
{
"name": "Netherlands",
"flag": "/images/flags/Netherlands.png",
"capital": "Amsterdam"
},
{
"name": "United Kingdom",
"flag": "/images/flags/Great-Britain.png",
"capital": "London"
},
{
"name": "Turkey",
"flag": "/images/flags/Turkey.png",
"capital": "Ankara"
},
{
"name": "Switzerland",
"flag": "/images/flags/Switzerland.png",
"capital": "Bern"
},
{
"name": "Spain",
"flag": "/images/flags/Spain.png",
"capital": "Madrid"
}
]
}
};