Skip to content

Commit 2c05b31

Browse files
committed
set up dotenv
1 parent 3a93528 commit 2c05b31

File tree

5 files changed

+23
-2
lines changed

5 files changed

+23
-2
lines changed

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,7 @@ node_modules
1212
# System files and IDE settings folders
1313
.DS_Store
1414
.idea
15-
.vscode
15+
.vscode
16+
17+
# Environmental variables
18+
.env

app.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
const express = require("express");
22
const mongoose = require("mongoose");
33
const cors = require("cors");
4+
require("dotenv").config();
45
const { errors } = require("celebrate");
6+
57
const mainRouter = require("./routes/index");
68
const { createUser, login } = require("./controllers/users");
79
const { getClothingItem } = require("./controllers/clothingItems");

package-lock.json

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"bcryptjs": "^2.4.3",
1717
"celebrate": "^15.0.3",
1818
"cors": "^2.8.5",
19+
"dotenv": "^16.4.5",
1920
"express": "^4.19.2",
2021
"express-winston": "^4.2.0",
2122
"jsonwebtoken": "^9.0.2",

utils/config.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
const { JWT_SECRET = "some-secret-key" } = process.env;
2+
13
module.exports = {
2-
JWT_SECRET: "some-secret-key",
4+
JWT_SECRET,
35
};

0 commit comments

Comments
 (0)