UNPKG

@release-notes/hub

Version:

A hub for hosting release notes.

18 lines (13 loc) 277 B
'use strict'; const WebApp = require('./services/WebApp'); const app = new WebApp(); app .configure({ files: [ `${__dirname}/config/application.js`, `${__dirname}/config/application.local.js`, ], }) .bootstrap() .launch(); module.exports = app;