mirror of
https://github.com/plexguide/Huntarr.git
synced 2026-04-20 07:40:20 -05:00
48 lines
511 B
Plaintext
48 lines
511 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
.gitmodules
|
|
|
|
# IDE / Editor
|
|
.cursor
|
|
.kiro
|
|
.agents
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Documentation (not needed at runtime)
|
|
*.md
|
|
LICENSE
|
|
|
|
# Development / Deployment scripts
|
|
unraid/
|
|
distribution/
|
|
tests/
|
|
venv/
|
|
.env*
|
|
|
|
# Docker files (prevent recursive builds)
|
|
docker-compose*.yml
|
|
Dockerfile
|
|
.dockerignore
|
|
|
|
# Python caches
|
|
__pycache__
|
|
*.pyc
|
|
*.pyo
|
|
*.egg-info
|
|
.pytest_cache
|
|
|
|
# Node (Dockerfile runs npm install fresh)
|
|
node_modules
|
|
|
|
# Workspace files
|
|
*.code-workspace
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|