alapha23 / UrbanScholar

A fullstack TikTok clone with Nextjs, Prisma, trpc
toptop-clone.vercel.app
0 stars 0 forks source link

[Task] Planner Project Management #30

Closed alapha23 closed 3 months ago

alapha23 commented 3 months ago

Description

Planner can

  1. create projects
  2. view all created projects
  3. select one of the projects
  4. delete one of the projects

Each project has

  1. 5 stages
  2. A navigation bar on top that states which stage we are at
  3. a conversational interface to facilitate report generation

DB Design

table Project {
    id       String
    stage number
    title     String
    conversation1 Conversation?
    conversation2 Conversation?
    conversation3 Conversation?
    conversation4 Conversation?
    conversation5 Conversation?
}

Tasks

Two pages

  1. View all projects of this planner
  2. View one project

Frontend

Backend

alapha23 commented 3 months ago

Core functionalities finished at

31