Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 920 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 920 Bytes

Source code for my Resume

Built using https://jsonresume.org.

Want to see it live? Click here

For development:

  1. Clone

  2. Edit resume.json

  3. npm run test to run schema validation (Intellisense should take care of this)

  4. npm run dev to develop in watch mode

  5. npm run build to generate a pdf version of the CV

  6. Update gist with the content of resume.json

⚠️ If the pdf is not rendered properly (fit in page), play with settings of createPdf function (more specifically the call to page.pdf()) in this file node_modules\resume-cli\lib\export-resume\index.js

  • I removed format: letter and used width:length size. FYI, format: A4 didn't work 😟
width: 2100,
height: 2970,
  • is what saved me 😁
width: 1024,
height: 1820,