feat: initial setup
This commit is contained in:
8
src/config/env.js
Normal file
8
src/config/env.js
Normal 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;
|
||||
Reference in New Issue
Block a user