UNPKG

1.08 kBPlain TextView Raw
1Usage:
2
3 hackmyresume <COMMAND> <SOURCES> [TO <TARGETS>] [-t <THEME>] [-f <FORMAT>]
4
5<COMMAND> should be BUILD, NEW, CONVERT, VALIDATE, or HELP. <SOURCES> should
6be the path to one or more FRESH or JSON Resume format resumes. <TARGETS>
7should be the name of the destination resume to be created, if any. The
8<THEME> parameter should be the name of a predefined theme (for example:
9COMPACT, MINIMIST, MODERN, or HELLO-WORLD) or the relative path to a custom
10theme. <FORMAT> should be either FRESH (for a FRESH-format resume) or JRS
11(for a JSON Resume-format resume).
12
13 hackmyresume BUILD resume.json TO out/resume.all
14 hackmyresume NEW resume.json
15 hackmyresume CONVERT resume.json TO resume-jrs.json
16 hackmyresume VALIDATE resume.json
17
18Both SOURCES and TARGETS can accept multiple files:
19
20 hackmyresume BUILD r1.json r2.json TO out/resume.all out2/resume.html
21 hackmyresume NEW r1.json r2.json r3.json
22 hackmyresume VALIDATE resume.json resume2.json resume3.json
23
24See https://github.com/hacksalot/hackmyresume/blob/master/README.md for more
25information.