1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-08 16:17:37 +00:00

remove unneccesary env load

This commit is contained in:
Bowden Kelly
2019-06-26 16:47:15 -07:00
parent 7a381348e3
commit ccedf0558f

View File

@@ -14,9 +14,6 @@ import { MONGODB_URI, SESSION_SECRET } from "./util/secrets";
const MongoStore = mongo(session);
// Load environment variables from .env file, where API keys and passwords are configured
dotenv.config({ path: ".env.example" });
// Controllers (route handlers)
import * as homeController from "./controllers/home";
import * as userController from "./controllers/user";