-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
34 lines (30 loc) · 720 Bytes
/
server.js
File metadata and controls
34 lines (30 loc) · 720 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
const SocketIO = require('socket.io')
const express = require('express')
const app = express()
const server = require('http').Server(app)
const path = require('path')
const { PORT } = require('./src/environment')
const { initDB } = require('./src/database')
const { Application } = require('./src/application')
server.listen(PORT)
let io
try {
io = SocketIO(server)
}
catch(e) {
console.log(e)
process.exit(1)
}
finally {
console.log(`Running on ${PORT}`)
}
app.use(express.static(path.resolve(__dirname, 'web/dist')));
let application
initDB()
.then(client => {
application = new Application(io, client)
})
.catch(e => {
console.log(e)
process.exit(2)
})