mirror of https://github.com/Nezreka/SoulSync.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
832 B
71 lines
832 B
# Docker ignore file for SoulSync WebUI
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Data directories (will be mounted as volumes)
|
|
logs/*
|
|
!logs/.gitkeep
|
|
database/*.db
|
|
database/*.db-shm
|
|
database/*.db-wal
|
|
config/config.json
|
|
!config/config.example.json
|
|
downloads/*
|
|
!downloads/.gitkeep
|
|
Transfer/*
|
|
!Transfer/.gitkeep
|
|
Storage/*
|
|
cache/*
|
|
Stream/*
|
|
Incomplete/*
|
|
|
|
# Temporary files
|
|
artist_bubble_snapshots.json
|
|
.spotify_cache
|
|
|
|
# Documentation
|
|
*.md
|
|
README.md
|
|
headless.md
|
|
multi-server-database-plan.md
|
|
server-source.md
|
|
plans.md
|
|
|
|
# GUI-specific files
|
|
main.py
|
|
ui/
|
|
requirements.txt
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db |