Files
GoMFT/.gitignore
T
StarFleetCPTN 558e81c7e8 feat: Enhance configuration handling and UI for job management
- Update .gitignore to include new provider files and ensure proper tracking.
- Refactor job and config forms to support multiple configuration selections, improving user experience.
- Implement logic to handle the initialization of skipProcessedFiles with a default value.
- Add new provider form templates for better organization and management of source and destination configurations.
- Enhance tests for provider forms and job configurations to ensure robust functionality.
- Introduce nullable handling for skipProcessedFiles in the database schema and update related migrations.
- Improve error handling and validation in job creation and editing processes.
2025-03-14 16:30:43 -07:00

85 lines
1.1 KiB
Plaintext

# Binaries for programs and plugins
*.exe
*.dll
*.so
*.dylib
# Test binary, build output
*.test
*.out
# Output of the go coverage tool, specifically when used with LiteIDE
*.cov
# Temporary files
*.tmp
*.temp
# Build directories
_build/
build/
# Vendor directory
/vendor/
# Go workspace file
go.work
go.work.sum
# IDE/editor specific files
.idea/
.vscode/
*.swp
*~
# Logs
*.log
# Dependency directories
node_modules/
# OS generated files
.DS_Store
Thumbs.db
# Ignore all Go files in the components directory
components/*.go
!components/components.go
components/providers/*.go
!components/providers/providers.go
components/providers/source/*.go
!components/providers/source/source.go
components/providers/destination/*.go
!components/providers/destination/destination.go
components/providers/common/*.go
!components/providers/common/common.go
# Ignore the data directory
data/
# Ignore .env files
.env
*.env
# Ignore the tmp directory
tmp/
# Ignore the configs directory
configs/
# Ignore the backups directory
backups/
# Ignore Dirs
/source/
/destination/
/archive/
# Ignore binaries
gomft