-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.js
36 lines (30 loc) · 814 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
/**
* Author Esvalirion (https://github.com/Esvalirion)
* Author il12 (https://github.com/il12)
*/
const config = {
// Trackmania server settings
trackmania: {
// server port on localhost, don't use 5000 please
port: 5555,
// Authentication details for SuperAdmin
login: 'SuperAdmin',
password: 'SuperAdmin',
// The login of the server at the master server, look it up on the https://players.trackmania.com/
serverLogin: 'login',
},
// MySQL database settings
mySql: {
host: 'localhost',
port: 3306,
user: 'pepega',
password: 'password',
database: 'pepedb',
waitForConnections: true,
connectionLimit: 10,
queueLimit: 0,
},
// Administrators logins from https://trackmania.io/#/player
admins: ['login'],
};
export default config;