Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 476 Bytes

File metadata and controls

34 lines (24 loc) · 476 Bytes

Task Management Backend API

A backend API for managing tasks in a team, built with Node.js, Express, PostgreSQL, and Prisma.


Tech Stack

  • Node.js
  • Express
  • PostgreSQL
  • Prisma ORM
  • pnpm

Current Status

  • Project setup completed
  • PostgreSQL connected locally
  • Prisma configured
  • User schema created and migrated

Database Schema (so far)

User

  • id (UUID)
  • email (unique)
  • password (hashed)
  • role (USER, OWNER)
  • createdAt
  • updatedAt