mirror of
https://github.com/HabiRabbu/Musicseerr
synced 2026-04-21 13:37:27 +00:00
45 lines
553 B
Text
45 lines
553 B
Text
# Source control & CI
|
|
.git
|
|
.github
|
|
.gitignore
|
|
.dockerignore
|
|
|
|
# Documentation & metadata
|
|
*.md
|
|
LICENSE
|
|
pyproject.toml
|
|
todos.md
|
|
AGENTS.md
|
|
Docs/
|
|
Images/
|
|
|
|
# Caches & runtime data
|
|
/cache/
|
|
config/
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
backend/.ruff*
|
|
|
|
# Dev-only files
|
|
backend/requirements-dev.txt
|
|
|
|
# Frontend build artifacts & dev files
|
|
frontend/node_modules/
|
|
frontend/build/
|
|
frontend/.svelte-kit/
|
|
frontend/.vite/
|
|
|
|
# Docker (prevent recursive context)
|
|
docker-compose*.yml
|
|
Dockerfile
|
|
manage.sh
|
|
|
|
# IDE & OS
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
.DS_Store
|
|
Thumbs.db
|