All checks were successful
CI / build-test (push) Successful in 1m2s
- Add `.gitignore` to exclude `node_modules/`, `.vitepress/cache/`, and `.vitepress/dist/` directories - Include `bun.lock` for dependency management with Bun
29 lines
465 B
Plaintext
29 lines
465 B
Plaintext
# Binaries for programs and plugins
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binary, built with `go test -c`
|
|
*.test
|
|
|
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
|
*.out
|
|
|
|
# Dependency directories (remove the comment below to include it)
|
|
# vendor/
|
|
|
|
# Docker build artifacts
|
|
app
|
|
.dockerignore
|
|
|
|
# Frontend build artifacts
|
|
frontend/node_modules/
|
|
frontend/dist/
|
|
|
|
# Documentation site
|
|
docs/node_modules/
|
|
docs/.vitepress/dist/
|
|
docs/.vitepress/cache/
|