-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathconfig.js
More file actions
35 lines (29 loc) · 785 Bytes
/
config.js
File metadata and controls
35 lines (29 loc) · 785 Bytes
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
/**
* @file Main config file
* @author Vladan Kudlac <vladankudlac@gmail.com>
*/
exports.server = {
port: 8080,
host: 'localhost',
get serverUrl() {
return `http://${this.host}:${this.port}`;
},
get apiUrl() {
return `http://${this.host}:${this.port}/api`;
},
};
exports.config = {
emailServer: 'smtp.stud.fit.vutbr.cz',
emailPort: 465,
emailUser: 'xkudla15',
emailPasswd: '*****',
adminEmail: 'xkudla15@stud.fit.vutbr.cz',
projectPath: 'WORKER',
declareXML: '<?xml version="1.0" encoding="UTF-8"?>\n<!DOCTYPE mlt SYSTEM "https://raw.githubusercontent.com/mltframework/mlt/master/src/modules/xml/mlt-xml.dtd">',
mapFilterNames: {
fadeInBrightness: 'brightness',
fadeOutBrightness: 'brightness',
fadeInVolume: 'volume',
fadeOutVolume: 'volume',
}
};