-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 1.64 KB
/
index.html
File metadata and controls
41 lines (41 loc) · 1.64 KB
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
<h1>contribution</h1>
<p>First go please to the Internal Developer Platform <a href="http://idp.softreck.dev">idp.softreck.dev</a></p>
<p><a href="https://github.com/softreck/contribution">Contribution information for projects development</a></p>
<p>Contribution information for projects development</p>
<ul>
<li><a href="/CHANGELOG">CHANGELOG.md</a></li>
<li><a href="/CODE_OF_CONDUCT">CODE_OF_CONDUCT.md</a></li>
<li><a href="/CONTRIBUTING">CONTRIBUTING.md</a></li>
<li><a href="/GOVERNANCE">GOVERNANCE.md</a></li>
<li><a href="/LICENSE">LICENSE</a></li>
</ul>
<h2>Tools for markdown</h2>
<p><a href="https://github.com/showdownjs/showdown">showdownjs/showdown: A bidirectional Markdown to HTML to Markdown converter written in Javascript</a></p>
<p><a href="https://www.11ty.dev/docs/getting-started/">Getting Started | Eleventy, a simpler static site generator.</a></p>
<h2>Start project</h2>
<p>Let’s create it with npm init.
The -y parameter tells npm to skip all the questions and just use the defaults.</p>
<pre><code>npm init -y
</code></pre>
<h2>11ty</h2>
<p>install and save Eleventy into our project’s package.json by running:</p>
<pre><code>npm install --save-dev @11ty/eleventy
</code></pre>
<p>run Eleventy</p>
<pre><code>npx @11ty/eleventy
</code></pre>
<p>serve</p>
<pre><code>npx @11ty/eleventy --serve
</code></pre>
<h3>5. Run Eleventy</h3>
<pre><code>npx eleventy
</code></pre>
<p>Or build and host locally for local development</p>
<pre><code>npx eleventy --serve
</code></pre>
<p>Or build automatically when a template changes:</p>
<pre><code>npx eleventy --watch
</code></pre>
<p>Or in debug mode:</p>
<pre><code>DEBUG=* npx eleventy
</code></pre>