Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 635 Bytes

File metadata and controls

40 lines (29 loc) · 635 Bytes

Employee Team Management App

Centralized team management system with FastAPI + Mongo-compatible backend and React + Material UI frontend.

Repository Structure

  • backend/ FastAPI REST API, service layer, schemas, tests
  • frontend/ React TypeScript app with role-aware pages and dashboard
  • infra/ Terraform phase-2 scaffold
  • scripts/ Deployment helper scripts

Backend

cd backend
pip install -r requirements.txt
uvicorn app.main:app --reload

Quality commands:

black .
ruff check .
pytest

Frontend

cd frontend
npm install
npm start

Lint command:

npm run lint