97 lines
976 B
Plaintext
97 lines
976 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.egg-info/
|
|
.venv/
|
|
venv/
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
out/
|
|
|
|
# Environment and secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
credentials.json
|
|
secrets.json
|
|
*.secret
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
|
|
# Editor/IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
*.sublime-workspace
|
|
*.sublime-project
|
|
|
|
# Test coverage
|
|
coverage/
|
|
.nyc_output/
|
|
.pytest_cache/
|
|
htmlcov/
|
|
.coverage
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
*.temp
|
|
|
|
# PokeAPI / PokeDB data cache
|
|
.pokeapi_cache/
|
|
.pokedb_cache/
|
|
|
|
|
|
# Local config overrides
|
|
*.local
|
|
|
|
# Claude Code sandbox artifacts
|
|
/HEAD
|
|
/config
|
|
/hooks
|
|
/objects
|
|
/refs
|
|
/frontend/HEAD
|
|
/frontend/config
|
|
/frontend/hooks
|
|
/frontend/objects
|
|
/frontend/refs
|
|
/.gitmodules
|
|
/.gitconfig
|
|
/.bash_profile
|
|
/.bashrc
|
|
/.profile
|
|
/.zprofile
|
|
/.zshrc
|
|
/.ripgreprc
|
|
/.mcp.json
|
|
/.claude/agents
|
|
/.claude/commands
|
|
/.claude/skills
|
|
/frontend/.claude/
|
|
.vscode
|
|
.idea
|