-
Notifications
You must be signed in to change notification settings - Fork 86
/
getting-started.html
62 lines (58 loc) · 2.76 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
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></p>
<p><code>resume export resume.html</code></p>
<h3>Import from LinkedIn</h3>
<p>One of our community members wrote a great Chrome extension to import your LinkedIn Profile.
<br />
<br />
<a target="_blank" href="https://chrome.google.com/webstore/detail/json-resume-exporter/caobgmmcpklomkcckaenhjlokpmfbdec">Download here</a>
</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">https://registry.jsonresume.org/thomasdavis</a></p>
<p>All you have to do is create a Gist on GitHub named <code>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>
<p>
<strong>QR Service</strong>
<br /><br />
If you want to generate a QR code that links to your hosted resume, use <a href="https://registry.jsonresume.org/thomasdavis.qr.png">https://registry.jsonresume.org/thomasdavis.qr.png</a>
e.g. <br />
<img src="https://registry.jsonresume.org/thomasdavis.qr.png" style="width: 120px;" />
</p>
<br />
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/BxpHgNM0clE" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</section>
</div>
</div>
</div>