Switched to local MongoDB
This commit is contained in:
@@ -1 +1,2 @@
|
||||
node_modules
|
||||
App.css
|
||||
|
||||
+14
-5
@@ -1,7 +1,16 @@
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: darkorange;
|
||||
.datePicker :hover {
|
||||
border-color: "#212121";
|
||||
}
|
||||
body {
|
||||
background-color: whitesmoke;
|
||||
.datePicker :focus {
|
||||
border-color: "#1976d2";
|
||||
border-width: "2px";
|
||||
}
|
||||
.datePicker{
|
||||
color:"red";
|
||||
background:"red";
|
||||
}
|
||||
|
||||
.colormebaby{
|
||||
background-color:"red";
|
||||
color:"red"
|
||||
}
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
1. When creating profile in the Profile form need to be added validation for the
|
||||
email because if the email is not email it gets sent to the server and crashes
|
||||
Fix all the form data apis, formData
|
||||
Extract the inpudate component from addeducation
|
||||
maybe fix that addeducation
|
||||
|
||||
@@ -2,6 +2,7 @@ import React from "react";
|
||||
import ReactDOM from "react-dom/client";
|
||||
import App from "./App";
|
||||
|
||||
import "./App2.css";
|
||||
const root = ReactDOM.createRoot(
|
||||
document.getElementById("root") as HTMLElement,
|
||||
);
|
||||
|
||||
@@ -13,7 +13,6 @@ function auth(req: ResponseAndUser, res: Response, next: NextFunction) {
|
||||
return res.status(401).json({ msg: 'No token, authorization denied' });
|
||||
}
|
||||
|
||||
console.log('auth middlewarwe')
|
||||
// Verify token
|
||||
try {
|
||||
jwt.verify(token, config.get('jwtSecret'), (error, decoded) => {
|
||||
|
||||
Generated
+6
-6
@@ -1011,9 +1011,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/is-core-module": {
|
||||
"version": "2.12.1",
|
||||
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz",
|
||||
"integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==",
|
||||
"version": "2.13.0",
|
||||
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz",
|
||||
"integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==",
|
||||
"dependencies": {
|
||||
"has": "^1.0.3"
|
||||
},
|
||||
@@ -2902,9 +2902,9 @@
|
||||
}
|
||||
},
|
||||
"is-core-module": {
|
||||
"version": "2.12.1",
|
||||
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz",
|
||||
"integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==",
|
||||
"version": "2.13.0",
|
||||
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz",
|
||||
"integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==",
|
||||
"requires": {
|
||||
"has": "^1.0.3"
|
||||
}
|
||||
|
||||
@@ -17,7 +17,6 @@ const router = express.Router();
|
||||
router.get("/", auth, async (req: any, res) => {
|
||||
try {
|
||||
let user: unknown = null
|
||||
console.log(req.user)
|
||||
if (isUserId(req)) {
|
||||
user = await User.findById(req.user.id).select("-password");
|
||||
res.json(user);
|
||||
|
||||
@@ -1,26 +1,25 @@
|
||||
import express from 'express'
|
||||
import express from "express";
|
||||
|
||||
import connectDB from './config/db'
|
||||
import connectDB from "./config/db";
|
||||
|
||||
import path from 'path'
|
||||
import path from "path";
|
||||
const app = express();
|
||||
|
||||
connectDB();
|
||||
|
||||
app.use(express.json());
|
||||
|
||||
|
||||
app.use('/api/users', require('./routers/api/users'))
|
||||
app.use('/api/auth', require('./routers/api/auth'))
|
||||
app.use('/api/profile', require('./routers/api/profile'))
|
||||
app.use('/api/posts', require('./routers/api/posts'))
|
||||
app.use("/api/users", require("./routers/api/users"));
|
||||
app.use("/api/auth", require("./routers/api/auth"));
|
||||
app.use("/api/profile", require("./routers/api/profile"));
|
||||
app.use("/api/posts", require("./routers/api/posts"));
|
||||
|
||||
// Serve static assets in production
|
||||
if (process.env.NODE_ENV === 'production') {
|
||||
app.use(express.static('client/build'));
|
||||
app.get('*', (req, res) => [
|
||||
res.sendFile(path.resolve(__dirname, 'client', 'build', 'index.html'))
|
||||
])
|
||||
if (process.env.NODE_ENV === "production") {
|
||||
app.use(express.static("client/build"));
|
||||
app.get("*", (req, res) => [
|
||||
res.sendFile(path.resolve(__dirname, "client", "build", "index.html")),
|
||||
]);
|
||||
}
|
||||
|
||||
const PORT = process.env.PORT || 5000;
|
||||
|
||||
Reference in New Issue
Block a user