Files
plant-disease-id/apps/web/.gitignore
Michael Freno 820a872f07 Initial commit: Plant Disease Identification app
- Next.js 16 App Router project with Tailwind CSS
- Plant disease knowledge base (93 diseases, 25 plants)
- Image upload with client+server preprocessing
- ML inference pipeline with mock/demo fallback
- Responsive results page with disease cards and treatment
- Full test suite (285 passing tests)
2026-06-05 19:21:16 -04:00

51 lines
729 B
Plaintext

# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions
# testing
/coverage
# next.js
/.next/
/out/
# production
/build
# misc
.DS_Store
*.pem
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
# env files — commit templates, not actual secrets
.env*.local
!.env.local.example
# vercel
.vercel
# typescript
*.tsbuildinfo
next-env.d.ts
# Uploaded images (user-generated content)
/public/uploads/*
!/public/uploads/.gitkeep
# ML model binaries (tracked via Git LFS)
# Add to .gitattributes for LFS:
# public/models/* filter=lfs diff=lfs merge=lfs -text