mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 12:37:08 +00:00
If the nav header is being received, this will try to detect the start and end of line and create an entry in the log. It doesn't check whether FSP/FGSP LSP/LGSP entries already do exist for that sequence. Closes # 28.
10 lines
218 B
JavaScript
Executable File
10 lines
218 B
JavaScript
Executable File
#!/usr/bin/node
|
|
|
|
const api = require('./api');
|
|
const ws = require('./ws');
|
|
const em = require('./events');
|
|
|
|
const server = api.start(process.env.HTTP_PORT || 3000, process.env.HTTP_PATH);
|
|
ws.start(server);
|
|
em.start();
|