feat: initial setup

This commit is contained in:
Sathishkumar Krishnan
2021-12-21 14:53:14 +05:30
parent 6ea5b6002a
commit c29fa95461
9 changed files with 5771 additions and 0 deletions

8
src/config/env.js Normal file
View File

@@ -0,0 +1,8 @@
require("dotenv").config();
const envVariables = {
API_PORT: process.env.API_PORT || "3000",
MONGODB_URI: process.env.MONGODB_URI || "mongodb://localhost:12017",
};
module.exports = envVariables;