Merge pull request #28 from PeteBa/fix-load-env

Ensure we load .env file
This commit is contained in:
Samer Albahra
2019-05-15 18:31:55 -05:00
committed by GitHub

View File

@@ -1,4 +1,6 @@
import { config } from "dotenv"
import { config as dotenv_config } from "dotenv"
dotenv_config();
import * as express from "express";
import * as cors from "cors";