Skip to content

Commit

Permalink
Update .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
AlmondBro committed May 19, 2020
1 parent a1eef9a commit becaf2b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -110,3 +110,6 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*
src/certificates/

#Ignore x509 backup folder
x509/
6 changes: 3 additions & 3 deletions server/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
require("dotenv")
.config({ path: __dirname + "./../.env",
debug: false}); //Load environmental variables
.config({ path: __dirname + "./../.env",
debug: false
}); //Load environmental variables

const isDev = require("isDev"); //Load environmental variables

Expand Down Expand Up @@ -108,7 +109,6 @@ app.use(bodyParser.json());
//https://stackoverflow.com/questions/44882535/warning-connect-session-memorystore-is-not-designed-for-a-production-environm/44884800#44884800
//https://stackoverflow.com/questions/44882535/warning-connect-session-memorystore-is-not-designed-for-a-production-environm/44884800#44884800

let username;

let cookieSession_config = {
name: "cvuhsd-portal-" + uuidv1(),
Expand Down

0 comments on commit becaf2b

Please sign in to comment.