A backend application for managing employees using Node.js, Express, and MongoDB.
# Clone the repository
git clone https://github.com/<your-username>/SGP-5.git
# Navigate to project directory
cd SGP-5
# create a .env file in root
PORT=3000
MONGO_URI=mongodb://localhost:27017/employee_management
JWT_SECRET=your_jwt_secret_key
# Install dependencies
npm install
# Start the server
npm start