Skip to content

Commit f970ba5

Browse files
committed
Adding github resource
1 parent 02280fd commit f970ba5

File tree

9 files changed

+1265
-1699
lines changed

9 files changed

+1265
-1699
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ pids
1111
*.seed
1212
*.pid.lock
1313

14+
# Jest
15+
jest_0
16+
1417
# Directory for instrumented libs generated by jscoverage/JSCover
1518
lib-cov
1619

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
const log = require('./src/log');
2-
const setupApp = require('./src/app');
2+
const { setupApp } = require('./src/app');
33
const config = require('./config/environment');
44

5-
setupApp(true)
5+
setupApp()
66
.then(app => app.listen(config.port, () => log.info(`app running on port ${config.port}`)))
77
.catch(error => {
88
log.error(error);

0 commit comments

Comments
 (0)