Files
Luminary/.gitignore
T
renjue 3c2285922e
CI / docker (push) Failing after 2m2s
Fix CI go test by committing embed placeholder for web/dist.
Keep a minimal dist/index.html in version control so go:embed succeeds
when CI checks out without a frontend build; ignore other dist artifacts.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-23 21:13:39 +08:00

44 lines
447 B
Plaintext

# Binaries
/luminary
/luminary-recover
*.exe
*.exe~
*.dll
*.so
*.dylib
*.test
# Go
go.work
go.work.sum
*.out
coverage/
*.coverprofile
# Luminary runtime data
data/
/data/
*.db
# Docker local prebuilt
.docker-bin/
# Frontend build output (keep placeholder for go:embed in CI / go test)
web/dist/*
!web/dist/index.html
web/node_modules/
# Environment
.env
.env.*
!.env.example
# IDE / editor
.idea/
.vscode/
.cursor/
# OS
.DS_Store
Thumbs.db