https://github.com/rizonahmed/job-task-server
JobTask Backend is the server-side implementation for the TaskMate application, providing APIs for task management, authentication, and real-time updates.
https://github.com/rizonahmed/job-task-server
cookies cors env exressjs jwt mongodb nodejs
Last synced: 2 months ago
JSON representation
JobTask Backend is the server-side implementation for the TaskMate application, providing APIs for task management, authentication, and real-time updates.
- Host: GitHub
- URL: https://github.com/rizonahmed/job-task-server
- Owner: rizonahmed
- Created: 2025-02-20T20:37:51.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-02-20T22:52:31.000Z (3 months ago)
- Last Synced: 2025-02-20T23:28:07.455Z (3 months ago)
- Topics: cookies, cors, env, exressjs, jwt, mongodb, nodejs
- Language: JavaScript
- Homepage: https://job-task-13f1d.web.app/
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JobTask Backend
JobTask Backend is the server-side implementation for the TaskMate application, providing APIs for task management, authentication, and real-time updates.## 🔗 Live API
- **FrontendUi:** [https://job-task-13f1d.web.app/](#)
- **Backend:** [https://task-mate-server-gold.vercel.app/](#)## ✨ Features
- User authentication with JWT
- CRUD operations for tasks
- Real-time task updates
- Secure API with CORS enabled## 🛠️ Technologies Used
- Node.js
- Express
- MongoDB
- JWT Authentication
- Cors## 📦 Installation
### Clone the repository:
```bash
git clone
```
### Install dependencies:
```bash
cd backend
npm install
```
### Set up environment variables:
Create a `.env` file in the `backend` directory and add the following:
```
PORT=5000
MONGO_URI=
JWT_SECRET=
```
### Run the server:
```bash
npm start
```The backend will run on `http://localhost:5000` by default.