This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require('dotenv').config(); | |
const express = require("express"); | |
const cors = require("cors"); | |
const connectDB = require("./utils/db"); | |
const User = require("./models/userModel"); | |
const app = express(); | |
app.use(express.json()); | |
app.use(cors()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# DNF Configuration File | |
# This file controls the behavior of the DNF package manager | |
[main] | |
# Enable GPG check to ensure package integrity and authenticity | |
gpgcheck=True | |
# Limit the number of kernel packages retained to avoid filling up /boot | |
installonly_limit=3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"liveServer.settings.donotVerifyTags": true, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"git.ignoreMissingGitWarning": true, | |
"explorer.confirmDelete": false, | |
"git.autofetch": true, | |
"git.enableSmartCommit": true, | |
"files.autoSave": "afterDelay", | |
"workbench.iconTheme": "icons", | |
"javascript.updateImportsOnFileMove.enabled": "always", |