mirror of
https://github.com/StarFleetCPTN/GoMFT.git
synced 2026-09-08 23:50:48 +02:00
- Added Docusaurus configuration and initial setup for documentation. - Created multiple documentation pages covering installation, configuration, and core concepts. - Implemented a GitHub Actions workflow for automatic deployment of documentation to GitHub Pages. - Updated .gitignore to exclude Docusaurus build artifacts and dependencies. - Enhanced README with a link to the online documentation.
84 lines
998 B
Plaintext
84 lines
998 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
|
|
*_templ.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 the dist directory
|
|
static/dist/
|
|
|
|
# Ignore binaries
|
|
gomft
|
|
|
|
# Docusaurus files
|
|
docs/.docusaurus/
|
|
docs/.cache-loader/
|
|
docs/build/
|
|
docs/build-searchindex/
|
|
docs/static/search/
|
|
docs/static/js/
|
|
docs/node_modules/
|
|
docs/.env*
|
|
docs/*.log |