An open API service indexing awesome lists of open source software.

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.

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.