Skip to content

Commit d98fc48

Browse files
committed
feat: improve debugging
1 parent 78b9734 commit d98fc48

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,5 +106,5 @@ require('./lib/rollbar')
106106
})
107107

108108
await server.start()
109-
console.log('server running')
109+
console.log('server running', server.info.uri)
110110
})()

lib/env.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const envalid = require('envalid')
22
const {str, num, url, bool} = envalid
33

44
module.exports = envalid.cleanEnv(process.env, {
5-
PORT: num({default: 8000}),
5+
PORT: num({default: 5000}),
66
WEBHOOKS_SECRET: str({devDefault: 'YOLO'}),
77
NPMHOOKS_SECRET: str({devDefault: 'SWAG'}),
88
QUEUE_NAME: str({default: 'events'}),

0 commit comments

Comments
 (0)