22 lines
870 B
Plaintext
22 lines
870 B
Plaintext
# Ignore sensitive or persistent data
|
|
config/ # Syncthing configuration folder (contains persistent config data)
|
|
|
|
# Ignore environment file with sensitive data
|
|
.env # Environment variables file (contains sensitive info)
|
|
|
|
# Ignore temporary or swap files created by editors
|
|
.docker-compose.yml.swp # Temporary swap file from text editor (e.g., Vim)
|
|
|
|
# Ignore the synced data directory (large or frequently changing files)
|
|
sync/ # Synced data directory (contains data you don't want to track)
|
|
|
|
# Ignore log files
|
|
*.log # Log files
|
|
|
|
# Ignore backup or swap files created by editors
|
|
*.bak # Backup files
|
|
*.swp # Swap files
|
|
|
|
# Ignore any local overrides or extra Docker Compose files
|
|
docker-compose.override.yml # Local override for docker-compose (optional)
|