forked from jsonresume/resume-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
getting-started.html
45 lines (43 loc) · 1.86 KB
/
getting-started.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
layout: default
title: Getting Started
---
<header id="header">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>Getting Started</h1>
</div>
</div>
</div>
</header>
<div id="getting-started" class="container">
<div class="row">
<div class="col-sm-6">
<section>
<h2>Command Line Tool</h2>
<p>We've built a CLI (Command Line Interface) which is supported by OSX, Linux and Windows. To create your own resume, install <code>resume-cli</code> from <b>npm</b>:</p>
<p><code>npm install -g resume-cli</code></p>
<h3>Exporting</h3>
<p>The command line tool uses an ecosystem of modules that we've open sourced to convert your resume to different formats:</p>
<p><code>resume export resume.pdf</code> (<i>Currently broken, help needed</i>)</p>
<p><code>resume export resume.html</code></p>
</section>
</div>
<div class="col-sm-6">
<section>
<h2>Hosting</h2>
<p>JSON Resume offers a hosting service that renders your <code>resume.json</code> to any theme you would like. <br /><br />
e.g. <a href="https://registry.jsonresume.org/thomasdavis">http://registry.jsonresume.org/thomasdavis</a></p>
<p>All you have to do is create a Gist on Github named <codfe>resume.json</code>. <br /> <br />
e.g. <a href="https://gist.github.com/thomasdavis/c9dcfa1b37dec07fb2ee7f36d7278105">https://gist.github.com/thomasdavis/c9dcfa1b37dec07fb2ee7f36d7278105</a>
</p>
<p>Our hosting service will automatically detect this when you access <code>https://registry.jsonresume.org/{your_github_username}</code>
</p>
<p>To set a theme, just add to your <code>resume.json</code>;<br />
<code>{ "meta": { "theme": "elegant" } }</code>
</p>
</section>
</div>
</div>
</div>