Files
go-cv/go.mod
Bryan Joshua Pedini 4779e63132 feat: implement PDF generation and update Dockerfile
- Add PDF generation using go-pdf/fpdf (Pure Go library)
- Walk markdown AST and render directly to PDF
- Update Dockerfile to include themes directory and config
- Fix ENTRYPOINT format for serve mode

Co-Authored-By: Claude (glm-5) <noreply@anthropic.com>
2026-03-05 02:33:37 +01:00

16 lines
307 B
Modula-2

module git.bjphoster.com/source/go-cv
go 1.22.2
require (
github.com/gorilla/mux v1.8.1
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/fsnotify/fsnotify v1.9.0 // indirect
github.com/go-pdf/fpdf v0.9.0 // indirect
github.com/yuin/goldmark v1.7.16 // indirect
golang.org/x/sys v0.13.0 // indirect
)