- Add /storage/ and /backend/storage/ to .gitignore - Track meetup time helper, logo asset, and assorted frontend/backend fixes
49 lines
511 B
Plaintext
49 lines
511 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Next.js
|
|
frontend/.next/
|
|
frontend/out/
|
|
|
|
# Backend build
|
|
backend/dist/
|
|
|
|
# Environment (keep .env.example tracked)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
**/.env.local
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Logs & debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
|
|
# Test / coverage
|
|
coverage/
|
|
|
|
# Local SQLite databases
|
|
*.db
|
|
|
|
# Misc
|
|
.turbo
|
|
|
|
# Local uploads / media blobs (not versioned)
|
|
/storage/
|
|
/backend/storage/
|
|
|
|
deploy/ |