Skip to content

Latest commit

 

History

History
53 lines (51 loc) · 1.23 KB

File metadata and controls

53 lines (51 loc) · 1.23 KB

Developer-Collaboration-Platform

A collaborative platform for developers to manage projects, tasks, discussions and team communication

Developer-Collaboration-Platform
├─ client
│  ├─ eslint.config.js
│  ├─ index.html
│  ├─ package-lock.json
│  ├─ package.json
│  ├─ public
│  │  ├─ favicon.svg
│  │  └─ icons.svg
│  ├─ README.md
│  ├─ src
│  │  ├─ App.css
│  │  ├─ App.jsx
│  │  ├─ assets
│  │  │  ├─ hero.png
│  │  │  ├─ react.svg
│  │  │  └─ vite.svg
│  │  ├─ components
│  │  │  ├─ common
│  │  │  └─ ui
│  │  ├─ context
│  │  ├─ hooks
│  │  ├─ index.css
│  │  ├─ main.jsx
│  │  ├─ pages
│  │  ├─ services
│  │  ├─ styles
│  │  └─ utils
│  └─ vite.config.js
├─ docs
├─ LICENSE
├─ README.md
└─ server
   ├─ package-lock.json
   ├─ package.json
   ├─ prisma
   │  └─ schema.prisma
   ├─ prisma.config.ts
   └─ src
      ├─ app.js
      ├─ config
      ├─ controllers
      ├─ middleware
      ├─ models
      ├─ server.js
      ├─ services
      └─ utils