-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.js
44 lines (44 loc) · 962 Bytes
/
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
'use strict';
module.exports = {
port: 1337
, socket: {
host: '10.20.30.90'
, port: 8082
}
, pages: [
'/',
'/index.html',
'/advanced',
'/troubleshooting',
'/timetable'
]
, files:{
'/': {
mime: 'text/html'
, name: 'index.html'
}
, '/slackomatic.appcache': {
mime: 'text/plain'
, name: 'slackomatic.appcache'
}
, '/favicon.ico': {
mime: 'image/x-icon'
, name: 'favicon.ico'
}
, '/img/cleanup_reminder.jpg': {
mime: 'image/jpg'
, name: 'img/cleanup_reminder.jpg'
}
, '/img/power_down_warning.png': {
mime: 'image/png'
, name: 'img/power_down_warning.png'
}
}
, supportedLines: {
'2': {type: 'tram', color: '#e35885'}
, 'D': {type: 'tram', color: '#e35885'}
, '13A':{type: 'bus', color: '#5caed7'}
, 'U2': {type: 'sub', color: '#8a5a83'}
, 'U3': {type: 'sub', color: '#f76205'}
}
};