mirror of
https://github.com/StarFleetCPTN/GoMFT.git
synced 2026-09-08 15:41:20 +02:00
- Replace mattn/go-sqlite3 with glebarez/sqlite for better cross-platform compatibility - Add gormigrate for database migration support - Update go.mod and go.sum with new dependencies - Modify database initialization to use the new SQLite driver - Ignore compiled binary in .gitignore
63 lines
714 B
Plaintext
63 lines
714 B
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
|
|
|
|
# Ignore the data directory
|
|
data/
|
|
|
|
# Ignore the tmp directory
|
|
tmp/
|
|
|
|
# Ignore the configs directory
|
|
configs/
|
|
|
|
# Ignore Dirs
|
|
source/
|
|
destination/
|
|
archive/
|
|
|
|
# Ignore binaries
|
|
gomft |