Skip to content

Commit 6e103c6

Browse files
p
1 parent 1d164cf commit 6e103c6

File tree

3 files changed

+42
-2
lines changed

3 files changed

+42
-2
lines changed

index.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ require("dotenv").config();
66

77
const { body, validationResult } = require("express-validator");
88

9-
const port = process.env.PORT;
9+
const port = 8000;
10+
11+
var cors = require('cors')
12+
app.use(cors())
13+
1014

1115
app.use(express.urlencoded());
1216

@@ -20,7 +24,7 @@ const mailGun = require("nodemailer-mailgun-transport");
2024

2125
const auth = {
2226
auth: {
23-
api_key: process.env.API_KEY, // TODO: Replace with your mailgun API KEY
27+
api_key: process.env.API_KEY , // TODO: Replace with your mailgun API KEY
2428
domain: process.env.DOMAIN, // TODO: Replace with your mailgun DOMAIN
2529
},
2630
};

package-lock.json

+35
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
@@ -14,6 +14,7 @@
1414
"license": "ISC",
1515
"dependencies": {
1616
"bootstrap": "^5.2.3",
17+
"cors": "^2.8.5",
1718
"dotenv": "^16.0.3",
1819
"ejs": "^3.1.8",
1920
"express": "^4.18.2",

0 commit comments

Comments
 (0)