Initial commit

This commit is contained in:
2025-11-25 23:05:11 -05:00
commit ca8a84a9ad
40 changed files with 33850 additions and 0 deletions

21
syncthing/.gitignore vendored Normal file
View File

@@ -0,0 +1,21 @@
# 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)