11e8f01264
- Add comprehensive Docker deployment capabilities with dynamic ReadWritePaths - Implement DDNS_TEST_MODE environment variable for CI/CD pipeline testing - Enhance root group security handling with smart detection - Add automated permission troubleshooting script for Docker environments - Create complete Docker deployment guide (DOCKER.md) - Fix 'Read-only file system' errors in containerized environments - Improve nginx directory detection with multi-pattern support - Add Docker volume mounting with proper permission handling - Enhanced permission management for both Docker and traditional deployments
80 lines
1019 B
Plaintext
80 lines
1019 B
Plaintext
# Rust build artifacts
|
|
/target
|
|
# Note: Cargo.lock is tracked for binary projects to ensure reproducible builds
|
|
|
|
# Debian packaging artifacts
|
|
*.deb
|
|
*.ddeb
|
|
*.buildinfo
|
|
*.changes
|
|
debian/.debhelper/
|
|
debian/debhelper-build-stamp
|
|
debian/files
|
|
debian/ddns-updater/
|
|
debian/ddns-updater.debhelper.log
|
|
debian/ddns-updater.substvars
|
|
debian/.debhelper/
|
|
debian/tmp/
|
|
|
|
# Build and packaging logs
|
|
build.log
|
|
package.log
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*~
|
|
.#*
|
|
#*#
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*.orig
|
|
|
|
# OS-specific files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Configuration files (may contain sensitive data)
|
|
*.conf.local
|
|
*.config.local
|
|
config/*.local
|
|
test_configs/*.real
|
|
|
|
# Log files
|
|
*.log
|
|
logs/
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
*~
|
|
|
|
# Runtime data
|
|
pid/
|
|
*.pid
|
|
*.sock
|
|
|
|
# Systemd related temporary files
|
|
systemd/*.test
|
|
systemd/*.tmp
|
|
systemd/*~
|
|
systemd/.#*
|
|
systemd/test-*
|
|
systemd/debug-*
|
|
|
|
# Documentation build artifacts
|
|
*.html
|
|
*.pdf
|
|
docs/build/
|
|
|
|
# Development and testing artifacts
|
|
test-output/
|
|
*.test.log
|
|
coverage.out
|
|
|
|
test_storage/
|