Tools for learning Japanese.
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.

13 lines
259 B

  1. // SERVER
  2. import SERVER from './server';
  3. import './routes';
  4. SERVER.listen({ port: 8080, host: '0.0.0.0' }, (err, address) => {
  5. if (err) {
  6. SERVER.log.error(err.message);
  7. process.exit(1);
  8. }
  9. SERVER.log.info(`server listening on ${address}`);
  10. });