You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
696 B
28 lines
696 B
import * as http from "http"; |
|
import * as WebSocket from "ws"; |
|
|
|
import { createApp, ServerState, WebSocketApi } from "../"; |
|
|
|
import log from "@common/logger"; |
|
|
|
const state = new ServerState(); |
|
const app = createApp(state); |
|
const webSocketApi = new WebSocketApi(state); |
|
|
|
const port = +(process.env.PORT || 8080); |
|
const host = process.env.HOST || "0.0.0.0"; |
|
|
|
const server = new http.Server(app); |
|
const webSocketServer = new WebSocket.Server({ server }); |
|
webSocketApi.listen(webSocketServer); |
|
|
|
state |
|
.start() |
|
.then(() => { |
|
server.listen(port, host, () => { |
|
log.info(`listening at ${host}:${port}`); |
|
}); |
|
}) |
|
.catch(err => { |
|
log.error({ err }, "error starting server"); |
|
});
|
|
|