diff --git a/.vscode/settings.json b/.vscode/settings.json index 6034f76..deda381 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -3,7 +3,8 @@ "search.exclude": { "**/node_modules": true, "**/bower_components": true, - "**/dist": true + "**/dist": true, + "**/coverge": true }, "typescript.referencesCodeLens.enabled": true, "tslint.ignoreDefinitionFiles": false, diff --git a/src/app.ts b/src/app.ts index 4e50e9b..f300733 100644 --- a/src/app.ts +++ b/src/app.ts @@ -12,6 +12,7 @@ import mongoose from "mongoose"; import passport from "passport"; import expressValidator from "express-validator"; import bluebird from "bluebird"; +import { MONGODB_URI, SESSION_SECRET } from "./util/loadSecrets"; const MongoStore = mongo(session);