blog/public/posts/what-is-hugo/index.html
2025-02-08 12:54:13 +01:00

90 lines
5.6 KiB
HTML

<!DOCTYPE html>
<html lang="fr-FR">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>console-demo/posts/what-is-hugo/</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<meta name="googlebot" content="index,follow,snippet,archive">
<link rel="stylesheet" href="http://localhost:1313/hugo-theme-console/css/terminal-0.7.4.min.css">
<link rel="stylesheet" href="http://localhost:1313/hugo-theme-console/css/animate-4.1.1.min.css">
<link rel="stylesheet" href="http://localhost:1313/hugo-theme-console/css/console.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<meta property="og:title" content="Introduction" />
<meta property="og:description" content="" />
<meta property="og:type" content="article" />
<meta property="og:url" content="http://localhost:1313/posts/what-is-hugo/" /><meta property="article:published_time" content="2019-08-03T00:00:00+00:00" />
<meta name="twitter:title" content="Introduction"/>
<meta name="twitter:description" content="Hugo is an open-source project and lives by the work of its contributors. There are plenty of open issues, and we need your help to make Hugo even more awesome. You don&rsquo;t need to be a Go guru to contribute to the project&rsquo;s development."/>
</head>
<body class="terminal">
<div class="container">
<div class="terminal-nav">
<header class="terminal-logo">
<div class="logo terminal-prompt">
<a href="http://localhost:1313/" class="no-style site-name">console-demo</a>:~#
<a href='http://localhost:1313/posts/what-is-hugo/http://localhost:1313/posts/what-is-hugo/http://localhost:1313/posts/what-is-hugo/http://localhost:1313/posts/what-is-hugo/http://localhost:1313/posts/what-is-hugo/http://localhost:1313/posts/what-is-hugo/http://localhost:1313/posts/what-is-hugo/http://localhost:1313/posts/what-is-hugo/http://localhost:1313/posts/what-is-hugo/http://localhost:1313/posts/what-is-hugo/http://localhost:1313/posts'>posts</a>/<a href='http://localhost:1313/posts/what-is-hugo/http://localhost:1313/posts/what-is-hugo/http://localhost:1313/posts/what-is-hugo/http://localhost:1313/posts/what-is-hugo/http://localhost:1313/posts/what-is-hugo/http://localhost:1313/posts/what-is-hugo/http://localhost:1313/posts/what-is-hugo/http://localhost:1313/posts/what-is-hugo/http://localhost:1313/posts/what-is-hugo/http://localhost:1313/posts/what-is-hugo/http://localhost:1313/posts/what-is-hugo'>what-is-hugo</a>/</div></header>
<nav class="terminal-menu">
<ul vocab="https://schema.org/" typeof="BreadcrumbList">
<li><a href="http://localhost:1313/about/" typeof="ListItem">about/</a></li>
<li><a href="http://localhost:1313/posts/" typeof="ListItem">posts/</a></li>
<li><a href="http://localhost:1313/photos/" typeof="ListItem">photos/</a></li>
</ul>
</nav>
</div>
</div>
<div class="container animated zoomIn fast" >
<h1>Introduction</h1>
3 Août 2019
<br/><br/>
<p>Hugo is an open-source project and lives by the work of its contributors. There are plenty of open issues, and we need your help to make Hugo even more awesome. You don&rsquo;t need to be a Go guru to contribute to the project&rsquo;s development.</p>
<h2 id="assumptions">Assumptions</h2>
<p>This contribution guide takes a step-by-step approach in hopes of helping newcomers. Therefore, we only assume the following:</p>
<ul>
<li>You are new to Git or open-source projects in general</li>
<li>You are a fan of Hugo and enthusiastic about contributing to the project</li>
</ul>
<h2 id="install-go">Install Go</h2>
<p>The installation of Go should take only a few minutes. You have more than one option to get Go up and running on your machine.</p>
<p>If you are having trouble following the installation guides for Go, check out Go Bootcamp, which contains setups for every platform or reach out to the Hugo community in the Hugo Discussion Forums.</p>
<h3 id="install-go-from-source">Install Go From Source</h3>
<p>Download the latest stable version of Go and follow the official Go installation guide.</p>
<p>Once you&rsquo;re finished installing Go, let&rsquo;s confirm everything is working correctly. Open a terminal&mdash;or command line under Windows&ndash;and type the following:</p>
<pre tabindex="0"><code>go version
</code></pre><p>You should see something similar to the following written to the console. Note that the version here reflects the most recent version of Go as of the last update for this page:</p>
<pre tabindex="0"><code>go version go1.12 darwin/amd64
</code></pre><p>Next, make sure that you set up your <code>GOPATH</code> as described in the installation guide.</p>
<p>You can print the <code>GOPATH</code> with <code>echo $GOPATH</code>. You should see a non-empty string containing a valid path to your Go workspace; for example:</p>
<pre tabindex="0"><code>/Users/&lt;yourusername&gt;/Code/go
</code></pre>
<div class="footer">
Powered by <a href="https://gohugo.io/">Hugo</a> with
<a href="https://github.com/mrmierzejewski/hugo-theme-console/">Console Theme</a>.
</div>
</div>
</body>
</html>