Skip to content

Commit c100bc7

Browse files
committed
deploy configs
1 parent cdaac8a commit c100bc7

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
scripts-prepend-node-path=true

bin/main.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ const PID = process.pid;
3737
const PORT = process.env.PORT || process.argv[2] || 8080; // we'll use this in production
3838
const SECRET = process.env.SECRET || "force"; // we'll use this in production
3939

40-
app.listen(PORT)
40+
// app.listen(PORT)
41+
app.listen()
42+
4143
console.log(`server is running on http://127.0.0.1:${PORT}/`)
4244
console.log(`PID ${PID}`)
4345

0 commit comments

Comments
 (0)