Skip to content

Pulkit0511/task-manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

📋 Task Manager

Node.js Express.js Prisma PostgreSQL React

A full-stack task management application built with React, Express, Prisma, and PostgreSQL.


✨ Features

  • 🔐 User authentication (signup/login with JWT)
  • 📌 Create, update, delete, and filter tasks
  • 🗂️ Categorize tasks (work, personal, etc.)
  • 📅 Set due dates for tasks
  • 📊 Task status tracking (Todo / In Progress / Done)
  • 🎨 Modern responsive UI with React

🏗️ Tech Stack

  • Frontend: React (Vite), TailwindCSS
  • Backend: Node.js, Express.js
  • Database: PostgreSQL (via Prisma ORM)
  • Auth: JWT + bcrypt

🚀 Getting Started

1️⃣ Clone the repository

git clone https://github.com/Pulkit0511/task-manager.git
cd task-manager

2️⃣ Backend setup

cd server
npm install

Create .env file in server/

DATABASE_URL="DATABASE_KEY"
JWT_SECRET="JWT_SECRET"
PORT=4000
CLIENT_ORIGIN=http://localhost:5173

Run Prisma migrations:

npx prisma generate
npx prisma db push

Start backend:

npm run dev

3️⃣ Frontend setup (coming soon)

cd ../client
npm install
npm run dev

📦 Project Structure

task-manager/
 ├── client/     # React frontend
 └── server/     # Express + Prisma backend

📝 API Endpoints

Auth

  • POST /auth/signup → Register user
  • POST /auth/login → Login user

Tasks

  • GET /tasks → Get all tasks (filterable by status/category)
  • POST /tasks → Create new task
  • PUT /tasks/:id → Update task
  • DELETE /tasks/:id → Delete task

🎯 Roadmap

  • Add task priority (High/Medium/Low)
  • Add reminders/notifications
  • Add collaborative/shared task lists
  • Deploy backend + frontend

👨‍💻 Author

Pulkit Gangwar – GitHub

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published