gohorsejobs/backend/.dockerignore
Tiago Yamamoto 7934afcf0d docs: complete project documentation overhaul
- Add comprehensive root README with badges, architecture diagram, and setup guide
- Update backend README with security middlewares and endpoint documentation
- Update frontend README with design system and page structure
- Update seeder-api README with generated data and credentials
- Add internal module READMEs (middleware, handlers, components)
- Document Clean Architecture layers and request flow
- Add environment variables reference table
2025-12-09 19:36:36 -03:00

47 lines
408 B
Text

# Dependencies
node_modules/
.pnp
.pnp.js
# Build outputs
/main
*.exe
*.dll
*.so
*.dylib
# Test files
*_test.go
*.test
coverage.out
coverage.html
# IDE and editor
.idea/
.vscode/
*.swp
*.swo
*~
# Git
.git/
.gitignore
# Documentation (keep docs/ for swagger)
*.md
LICENSE
# Environment files (security)
.env
.env.*
!.env.example
# Temporary files
tmp/
temp/
*.tmp
*.log
# OS files
.DS_Store
Thumbs.db