Files
MOPC-Portal/.gitignore
Matt d0058b46ed feat: Mentees & Activity tab on /admin/mentors
Adds a project-centric ops view for mentor management:
- New mentor.getMenteeActivity tRPC procedure aggregates every project
  with wantsMentorship=true and derives a status (unassigned / assigned
  / active / stalled) from the latest message + file activity.
- /admin/mentors becomes a tabbed page: existing Mentor list +
  new Mentees & Activity table with status pills, search, and a
  per-row Assign/Open CTA linking to /admin/projects/[id]/mentor.
- Includes 2 unit tests covering classification + program scoping.

Also: ignore .remember/ (plugin scratch dir).
2026-04-28 16:47:53 +02:00

66 lines
658 B
Plaintext

# Dependencies
node_modules/
.pnp
.pnp.js
# Next.js
.next/
out/
# Build
dist/
build/
# Environment
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# Docker env (contains secrets on server - never commit)
docker/.env
# Debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# TypeScript
*.tsbuildinfo
next-env.d.ts
# Prisma
prisma/*.db
prisma/*.db-journal
# Testing
coverage/
# Playwright MCP screenshots
.playwright-mcp/
# Output files
*-output.txt
build-output.txt
# Misc
*.log
.vercel
# Private keys and secrets
private/
public/build-id.json
.remember/