UNPKG
@release-notes/hub
Version:
latest (0.5.0)
0.5.0
0.4.0
0.3.0
0.2.0
0.1.0
A hub for hosting release notes.
github.com/release-notes/release-notes-hub
@release-notes/hub
/
server.js
18 lines
(13 loc)
•
277 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
'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;