Command line tool written in go to convert a resume in json to html (based on https://github.com/jsonresume/resume-cli)
cli | ||
model | ||
themes | ||
.gitignore | ||
.gitmodules | ||
generate.sh | ||
README.md | ||
sample.resume.json | ||
schema.json |
jsonresume written in go
kendall theme is based on https://github.com/LinuxBozo/jsonresume-theme-kendall. stackoverflow theme is based on https://github.com/francescoes/jsonresume-theme-stackoverflow.
$ go build -o jsonresume ./cli
$ ./jsonresume -t kendall -r resume-schema/examples/valid/complete.json -o resume.html && cp themes/kendall/*.css .
To validate a resume:
$ npm install ajv-cli@3.3.0
$ node ./node_modules/ajv-cli/index.js validate -s schema.json -d sample.resume.json