# Node modules (global catch-all) **/node_modules/ # Frontend build outputs /frontend/dist/ /frontend/build/ /frontend/.vite/ # Backend runtime data (DB + uploads) backend/data/ backend/data/** # Keep prisma migrations tracked (commit these) !/backend/prisma/migrations/ !/backend/prisma/migrations/** # Database files *.sqlite *.db # Environment (do NOT commit secrets) .env .env.local .env.*.local # Logs npm-debug.log* yarn-debug.log* pnpm-debug.log* *.log # Editor / OS .vscode/ .idea/ .DS_Store Thumbs.db