- Add PaginatedResponse and PaginationMeta schemas - Update GET /api/v1/projects to support: - page param (default: 1) - limit param (default: 20, max: 100) - search param (case-insensitive name search) - Response includes pagination metadata (page, limit, total, total_pages) - Add Python cache files to gitignore
63 lines
496 B
Plaintext
63 lines
496 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
.Python
|
|
*.egg-info/
|
|
.eggs/
|
|
|
|
# Binaries
|
|
/bin/
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binary
|
|
*.test
|
|
|
|
# Output of go coverage tool
|
|
*.out
|
|
|
|
# Go workspace file
|
|
go.work
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Build
|
|
/build/
|
|
/dist/
|
|
|
|
# Local config overrides
|
|
config.local.yaml
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Local Orchard cache
|
|
.orchard/
|
|
|
|
# Temp files
|
|
tmp/
|
|
temp/
|
|
|
|
# Claude Code
|
|
.claude/
|
|
CLAUDE.md
|