some updates?

This commit is contained in:
Brian Emilius
2021-02-10 14:52:14 +01:00
parent 5891d730f4
commit 08d9b39d7b
4 changed files with 8 additions and 7 deletions

3
.env
View File

@@ -1,2 +1,3 @@
NODE_ENV="development"
JWT_SECRET=kj3h45bl2k34jt23498570q9n8098354t7029358tyowie5uthw8475tyq98347ty834irhfoqi34uyt18
JWT_SECRET=kj3h45bl2k34jt23498570q9n8098354t7029358tyowie5uthw8475tyq98347ty834irhfoqi34uyt18
PORT=4000

10
bin/www
View File

@@ -4,7 +4,7 @@ var app = require("../app");
var http = require("http");
// Define a port for the server to listen on
var port = process.env.PORT || 4000;
var port = 4000;
app.set("port", port);
// Create a server instance
@@ -17,16 +17,16 @@ server.listen(port);
server.on("error", onError);
server.on("listening", onListening);
function pipeOrPort(address) {
/* function pipeOrPort(address) {
return typeof address == "string" ? `pipe ${address}` : `port ${address.port}`;
}
} */
function onError(error) {
if (error.syscall != "listen") {
throw error;
}
let bind = pipeOrPort(server.address());
let bind = 4000;//pipeOrPort(server.address());
switch (error.code) {
case "EACCES":
@@ -41,6 +41,6 @@ function onError(error) {
}
function onListening() {
let bind = pipeOrPort(server.address());
let bind = 4000;//pipeOrPort(server.address());
console.log(`Listening on ${bind}`);
}

View File

@@ -20,7 +20,7 @@
"express-winston": "^4.0.2",
"jsonwebtoken": "^8.5.1",
"sequelize": "^5.21.3",
"sqlite3": "^4.1.1",
"sqlite3": "^4.2.0",
"winston": "^3.2.1"
},
"devDependencies": {

Binary file not shown.