35 lines
387 B
Plaintext
35 lines
387 B
Plaintext
# Business Central Backup - Git Ignore File
|
|
# Prevents sensitive data from being committed to version control
|
|
|
|
# Configuration file with secrets
|
|
bc-backup.conf
|
|
|
|
# Log files
|
|
logs/
|
|
*.log
|
|
|
|
# Temporary files
|
|
temp/
|
|
*.bacpac
|
|
*.gpg
|
|
*.tmp
|
|
|
|
# Backup downloads
|
|
backups/
|
|
*.bak
|
|
|
|
# System files
|
|
.DS_Store
|
|
Thumbs.db
|
|
*~
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|