-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
104 lines (104 loc) · 1.86 KB
/
config.js
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
export const configurations = {
development: {
studentIds: [
100, 101, 102, 103, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210,
211, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313,
314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328,
329, 330, 331, 332,
],
api_url: "http://localhost:3000/api",
classIds: [1, 2],
subjectIds: [1],
questionIds: [1, 2, 3, 4],
},
staging: {
studentIds: [
"1002",
"1003",
"1004",
"1005",
"1006",
"1007",
"1008",
"1009",
"1010",
"1011",
"1012",
"1013",
"1014",
"1015",
"1016",
"1017",
"1018",
"1019",
"1020",
"1021",
"1022",
"1023",
"1024",
"1025",
"1026",
"1027",
"1028",
"1029",
"1030",
"1031",
"1032",
"1033",
"1034",
"1035",
"1036",
"1037",
"1038",
"1039",
"1040",
"1041",
],
api_url: "https://staging.d2v5glybarfb34.amplifyapp.com/api",
classIds: [
"1",
"2",
"5",
"969814581724905473",
"969814699072487425",
"969814700640534529",
"969814701291077633",
"969814703137849345",
"969814803190513665",
"969814803831455745",
],
subjectIds: ["1", "2", "5", "6", "9", "10", "13", "14", "17", "18"],
questionIds: [
"1002",
"1003",
"1004",
"1005",
"1006",
"1007",
"1008",
"1009",
"1010",
"1011",
"1012",
"1013",
"1014",
"1015",
"1016",
"1017",
"1018",
"1019",
"1020",
"1021",
"1022",
"1023",
"1024",
"1025",
"1026",
"1027",
"1028",
"1029",
"1030",
"1031",
],
},
};