diff --git a/.env b/.env index 8027589..c1481c9 100644 --- a/.env +++ b/.env @@ -1,2 +1,3 @@ NODE_ENV="development" -JWT_SECRET=kj3h45bl2k34jt23498570q9n8098354t7029358tyowie5uthw8475tyq98347ty834irhfoqi34uyt18 \ No newline at end of file +JWT_SECRET=kj3h45bl2k34jt23498570q9n8098354t7029358tyowie5uthw8475tyq98347ty834irhfoqi34uyt18 +PORT=4000 \ No newline at end of file diff --git a/bin/www b/bin/www index bfff6c0..d46c855 100644 --- a/bin/www +++ b/bin/www @@ -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}`); } diff --git a/package.json b/package.json index 2b1a6ca..71adf3f 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/storage/database.sqlite3 b/storage/database.sqlite3 index 5e99645..1c00b12 100644 Binary files a/storage/database.sqlite3 and b/storage/database.sqlite3 differ