blob: 30e2908bd03ce6e3282f8ec3d0756af16a4351fa (
plain)
1
2
3
4
5
6
7
8
9
|
'use strict';
const app = require('./app');
const port = app.get('port');
const server = app.listen(port);
server.on('listening', () =>
console.log(`Feathers application started on ${app.get('host')}:${port}`)
);
|