*: restructuring to make testing flow nicer
All checks were successful
Basic Checking / Explore-Gitea-Actions (push) Successful in 50s
All checks were successful
Basic Checking / Explore-Gitea-Actions (push) Successful in 50s
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
281945a672
commit
ef4e816dac
12 changed files with 10 additions and 5 deletions
15
server.js
Normal file
15
server.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
const config = require('./config');
|
||||
const app = require('./app');
|
||||
const bole = require('bole');
|
||||
const log = bole('server');
|
||||
|
||||
app.listen(config.express.port, config.express.ip, function(error) {
|
||||
if (error) {
|
||||
log.error('Unable to listen for connections', error);
|
||||
process.exit(10);
|
||||
}
|
||||
log.info('express is listening on http://' +
|
||||
config.express.ip + ':' + config.express.port)
|
||||
});
|
||||
|
||||
// vim:set sts=2 sw=2 et:
|
Loading…
Add table
Add a link
Reference in a new issue