Skip to content

Commit

Permalink
fix: update server.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
adeherysh authored Apr 13, 2024
1 parent 9622141 commit e030b7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ app.listen(port, () => {
console.log(` \x1b[33m▲ ${pkg.name} ${pkg.version}\x1b[0m`)
console.log(` - Environment:`)
console.log(` PORT=${port}`)
console.log(` SECRET_KEY=${secret ? dev ? secret : '******' : 'undefined'}`)
console.log(` SECRET_KEY=${dev ? secret : '******'}`)
console.log(` ALLOWED_ORIGIN=${allowOrigin}`)
console.log(` ALLOWED_METHODS=${allowMethods}`)
console.log(` ALLOWED_HEADERS=${allowHeaders}\n`)
Expand Down

0 comments on commit e030b7e

Please sign in to comment.