-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.js
43 lines (35 loc) · 1.26 KB
/
server.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
const path = require('path');
const Server = require('./lib/Server');
const Test = require('./lib/tests/Test');
const env = require('@next/env');
env.loadEnvConfig('./', process.env.NODE_ENV !== 'production');
const dev = process.env.NODE_ENV !== 'production'
const port = parseInt(process.env.PORT || '3001', 10);
process.on('uncaughtException', function (err) {
console.log(err);
console.error(err.stack);
});
process.on('unhandledRejection', (reason, p) => {
console.log('Unhandled Rejection at: Promise', p, 'reason:', reason);
// application specific logging, throwing an error, or other logic here
});
console.log(`
######
# # #### #### ######
# # # # # #
# # # # #### #####
# # # # # #
# # # # # # #
###### #### #### ###### \n`);
const server = new Server(port, dev);
if (process.env.TEST === 'TRUE') {
const config = path.join(process.env.TEMP_DIRECTORY, 'config.json');
const test = new Test(config);
test.setupTestEnvironment().then(async () => {
await test.createDummyUser();
console.log('Test environment setup');
server.start();
})
} else {
server.start();
}