<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: fernandosolivas</title>
    <description>The latest articles on DEV Community by fernandosolivas (@fernandosolivas).</description>
    <link>https://dev.to/fernandosolivas</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F343747%2F3f25a73f-7241-433d-99eb-2620b7445d21.jpeg</url>
      <title>DEV Community: fernandosolivas</title>
      <link>https://dev.to/fernandosolivas</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/fernandosolivas"/>
    <language>en</language>
    <item>
      <title>Creating your site for free in 5 minutes</title>
      <dc:creator>fernandosolivas</dc:creator>
      <pubDate>Sun, 01 Mar 2020 15:11:32 +0000</pubDate>
      <link>https://dev.to/fernandosolivas/creating-your-site-for-free-in-5-minutes-2j1h</link>
      <guid>https://dev.to/fernandosolivas/creating-your-site-for-free-in-5-minutes-2j1h</guid>
      <description>&lt;h3&gt;
  
  
  Let's create a site in 5 minutes with Hugo
&lt;/h3&gt;

&lt;p&gt;Who never wanted to have a website, curriculum or even a completely customized portfolio, with your face and your own description? Many use Wordpress to achieve these points but end up demanding a server to run or pay for it to work. Here, I will explain how I used &lt;a href="https://gohugo.io/"&gt;Hugo&lt;/a&gt; to make this site in less than 5 minutes using, &lt;a href="https://pages.github.com/"&gt;Github Pages&lt;/a&gt; and an editor text, in my case &lt;a href="https://code.visualstudio.com/"&gt;VSCode&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Github Pages
&lt;/h2&gt;

&lt;p&gt;In case you don't know &lt;a href="https://github.com/"&gt;Github&lt;/a&gt;, it is a code control version that uses &lt;a href="https://git-scm.com/"&gt;Git&lt;/a&gt; as a system. If you do not know one of the two, I recommend further reading for further study. For now, we will need to install Git on your local machine and create an &lt;a href="https://github.com"&gt;Github account&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Installing Git
&lt;/h3&gt;

&lt;p&gt;To install Git is very simple and you can choose which version you want. Be it &lt;a href="https://git-scm.com/download/win"&gt;Windows&lt;/a&gt;, &lt;a href="https://git-scm.com/download/mac"&gt;Mac OS X&lt;/a&gt; or &lt;a href="https://git-scm.com/download/linux"&gt;Linux&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;After installing, you will need to perform some basic settings. Open your operating system terminal and run the command below.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nv"&gt;$ &lt;/span&gt;git config &lt;span class="nt"&gt;--global&lt;/span&gt; user.email &lt;span class="s2"&gt;"me@domain.com"&lt;/span&gt;

&lt;span class="nv"&gt;$ &lt;/span&gt;git config &lt;span class="nt"&gt;--global&lt;/span&gt; user.name &lt;span class="s2"&gt;"Your Name"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;There, your Git client is set up!&lt;/p&gt;

&lt;h3&gt;
  
  
  Creating your Github account
&lt;/h3&gt;

&lt;p&gt;Go to &lt;a href="https://github.com"&gt;Github&lt;/a&gt;, click &lt;strong&gt;Sign Up&lt;/strong&gt; to create an account.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--TNr04UCJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/28khvgql5cw6g5tozs5a.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--TNr04UCJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/28khvgql5cw6g5tozs5a.png" alt="signup"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Then create your account by filling out the form and select the free Github plan.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--zK4GRUbI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/fylel5hin5hgq6rrfxuc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--zK4GRUbI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/fylel5hin5hgq6rrfxuc.png" alt="form"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;And ... Shazaam !! Your account is created, but don't close Github now, we will need it soon! :)&lt;/p&gt;

&lt;h2&gt;
  
  
  Go
&lt;/h2&gt;

&lt;p&gt;Install &lt;a href="https://golang.org/dl/"&gt;Go&lt;/a&gt; on your machine before proceeding. We will need it to install and perform the next step.&lt;/p&gt;

&lt;h2&gt;
  
  
  Hugo
&lt;/h2&gt;

&lt;p&gt;Hugo is a &lt;a href="https://golang.org"&gt;go&lt;/a&gt; framework designed to create websites using templates, abstracting as much logic as possible. You can create a template and make it available in the community for others to use. Soon, other (very cool) people have already created templates for us to use. If you want to take a look at the options, you can find them by clicking &lt;a href="https://themes.gohugo.io/"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Remember, before installing/running Hugo, you will need to have &lt;a href="https://golang.org"&gt;go&lt;/a&gt; installed!&lt;/p&gt;

&lt;h3&gt;
  
  
  Starting our website
&lt;/h3&gt;

&lt;p&gt;The first thing we will need to do is create a repository on Github. A repository is a "directory" in the cloud with history and from that history, it is possible to do a lot of things. Then, on your Github homepage, click on the green button in the left corner to create a new repository, like the image below.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--hCDmBMr7--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/rlnpogldy7llygwg4tme.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--hCDmBMr7--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/rlnpogldy7llygwg4tme.png" alt="gh-create-repo"&gt;&lt;/a&gt;&lt;br&gt;
In the form to create a new repository, you * must * create a repository in the format &lt;em&gt;nomedasuaconta.github.io&lt;/em&gt;, otherwise, it will not work.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--PJ6YRz-L--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/tr5j3zvdvtc8uu1hd3t5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--PJ6YRz-L--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/tr5j3zvdvtc8uu1hd3t5.png" alt="gh-create-repo-pages"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You will then be redirected to a page with a tutorial to start modifying your repository.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--HifYFm1Y--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/eovha80omcfp8kc7atdt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--HifYFm1Y--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/eovha80omcfp8kc7atdt.png" alt="gh-create-repo-feedback"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;We will use the first example and we will start making our edits with Hugo.&lt;/p&gt;
&lt;h2&gt;
  
  
  Using our repository as a website
&lt;/h2&gt;

&lt;p&gt;Now, open the command line of your operating system and run the command&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nv"&gt;$ &lt;/span&gt;git clone https://github.com/&amp;lt;yourreponame&amp;gt;/&amp;lt;yourreponame&amp;gt;.github.io.git
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;By default, git will ask for your password to access Github. Relax, this is normal. Enter your password and soon you will see that a folder has been created with the name_positure_name_.&lt;/p&gt;

&lt;p&gt;Enter that passata and we will begin to perform the magic.&lt;/p&gt;

&lt;h2&gt;
  
  
  Installing Hugo
&lt;/h2&gt;

&lt;p&gt;First, we will install Hugo, you will need to have installed &lt;a href="https://golang.org"&gt;go&lt;/a&gt; 1.11+ and Git. Those are the only prerequisites. Now run one of these options on your terminal.&lt;/p&gt;

&lt;h4&gt;
  
  
  Mac OS
&lt;/h4&gt;



&lt;div class="highlight"&gt;&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nv"&gt;$ &lt;/span&gt;brew &lt;span class="nb"&gt;install &lt;/span&gt;hugo
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;h4&gt;
  
  
  Linux
&lt;/h4&gt;



&lt;div class="highlight"&gt;&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nv"&gt;$ &lt;/span&gt;brew &lt;span class="nb"&gt;install &lt;/span&gt;hugo
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;If you don't have &lt;a href="https://docs.brew.sh/Homebrew-on-Linux"&gt;Homebrew&lt;/a&gt; installed on Linux, install it first.&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  Windows
&lt;/h4&gt;



&lt;div class="highlight"&gt;&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nv"&gt;$ &lt;/span&gt;choco &lt;span class="nb"&gt;install &lt;/span&gt;hugo &lt;span class="nt"&gt;-confirm&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;If you don't have &lt;a href="https://chocolatey.org/"&gt;Chocolatey&lt;/a&gt; installed on Windows, install it first.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Running Hugo
&lt;/h2&gt;

&lt;p&gt;After the installation has been completed, we will be able to execute the following command in the terminal to create our websites.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nv"&gt;$ &lt;/span&gt;hugo new site. &lt;span class="nt"&gt;--force&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;The &lt;em&gt;-- force&lt;/em&gt; argument is necessary because the directory already exists and Hugo confirms that we want to write to that destination folder. After running you should have the following structure:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="err"&gt;$&lt;/span&gt;
├── archetypes
│ └── default.md
├── config.toml
├── content
├── &lt;span class="nb"&gt;date&lt;/span&gt;
├── layouts
├── static
└── themes
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;h4&gt;
  
  
  Choosing a theme
&lt;/h4&gt;

&lt;p&gt;This is a basic structure of the framework that we don't need to worry about now. Let's choose a theme on the &lt;a href="https://themes.gohugo.io/"&gt;community page&lt;/a&gt;. I will use the &lt;a href="https://themes.gohugo.io/cactus/"&gt;Cactus theme&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;At the root of our project, we will execute the two commands below:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nv"&gt;$ &lt;/span&gt;&lt;span class="nb"&gt;cd &lt;/span&gt;themes
&lt;span class="nv"&gt;$ &lt;/span&gt;git clone https://github.com/digitalcraftsman/hugo-cactus-theme.git
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;This will make us download the Cactus theme to our repository and we can customize it. Notice that at the root of your project, there is a file called &lt;code&gt;config.toml&lt;/code&gt;. We will add a line indicating which theme we will be using. The file should look like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight shell"&gt;&lt;code&gt;baseURL &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;"http://example.org/"&lt;/span&gt; &amp;lt;- change this value to https://&amp;lt;yourreponame.github.io&amp;gt;
languageCode &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;"en-us"&lt;/span&gt;
title &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;"My New Hugo Site"&lt;/span&gt;
theme &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;"hugo-cactus-theme"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;Now, we will execute the following command &lt;code&gt;hugo server&lt;/code&gt; at the root of the project. This will run a local server so that you can see a preview of your site. At the moment, we will only have one example because we haven't changed anything yet. If you access the url: &lt;a href="http://localhost:1313"&gt;http://localhost:1313&lt;/a&gt; through the browser you will see a page similar to this&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Pa0_Z-3D--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/1z245jgk74r5dx6d57x5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Pa0_Z-3D--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/1z245jgk74r5dx6d57x5.png" alt="boilerplate"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Great, now we have something visual! We now need to customize as we prefer to make our website more beautiful. There are many ways to customize the Cactus theme. We can see more details by clicking &lt;a href="https://github.com/digitalcraftsman/hugo-cactus-theme"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;h4&gt;
  
  
  Customizing our theme
&lt;/h4&gt;

&lt;p&gt;The first change we are going to make is to copy to the root of our project, a file called &lt;code&gt;config.toml&lt;/code&gt; (yes, just like yours) which is in &lt;code&gt;./themes/exampleSite&lt;/code&gt;. This file already contains many configuration options and there you can change the name, title, description, and others.&lt;/p&gt;

&lt;p&gt;We will set up a section together, which is &lt;em&gt;social&lt;/em&gt;. At the end of the file we will add the following content:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="o"&gt;[&lt;/span&gt;social]
    twitter &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;"https://www.twitter.com/fernandosolivas"&lt;/span&gt;
    github &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;"https://www.github.com/fernandosolivas"&lt;/span&gt;
    linkedin &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;"https://www.linkedin.com/in/fernandosoliva/"&lt;/span&gt;
    medium &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;"https://medium.com/fernandosolivas"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;And choose a really cool photo to put in the center of the page, you will need to move it to &lt;code&gt;./themes/static/images/avatar.png&lt;/code&gt;. It must have the same name, otherwise, it will not work.&lt;/p&gt;

&lt;p&gt;In the end, we will have something like this.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--_ZpS2Kf1--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/hyln19rvy2qbdon0atel.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--_ZpS2Kf1--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/hyln19rvy2qbdon0atel.png" alt="cactus-boilerplate-edited"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  Adding more information
&lt;/h4&gt;

&lt;p&gt;Now, our page is still a little raw, so let's add a page with a description of you. The Hugo framework expects that all created pages will be inside the &lt;code&gt;&amp;lt;project&amp;gt;/content&lt;/code&gt; folder, so let's create an &lt;code&gt;about&lt;/code&gt;  folder inside content and a file called &lt;code&gt;_index.md&lt;/code&gt; inside the new folder created.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight shell"&gt;&lt;code&gt;├── archetypes
│ └── default.md
├── config.toml
├── content
│ └── about
│ └── _index.md
...
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;You may not be familiar, but this file suffix &lt;code&gt;.md&lt;/code&gt; represents a file of type &lt;a href="https://en.wikipedia.org/wiki/Markdown"&gt;Markdown&lt;/a&gt; and &lt;a href="https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet"&gt;here&lt;/a&gt; has a list of examples and tips of how to use it.&lt;/p&gt;

&lt;p&gt;Let's start by editing the file and adding the following text at the top of the file:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight shell"&gt;&lt;code&gt;+++
&lt;span class="nb"&gt;date&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;"2015-06-20T14: 02: 37 + 02: 00"&lt;/span&gt;
title &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;"About"&lt;/span&gt;
hidden &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;false
&lt;/span&gt;menu &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;"main"&lt;/span&gt;
+++
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;Each item is self-explanatory but let's take a look at them:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Date: Date of publication of the page&lt;/li&gt;
&lt;li&gt;Title: Title / Page name&lt;/li&gt;
&lt;li&gt;Hidden: Should appear or not in the menu&lt;/li&gt;
&lt;li&gt;Menu: Which menu it should be related to&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;After that we can only start writing, my &lt;code&gt;_index.md&lt;/code&gt; file looks like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight shell"&gt;&lt;code&gt;+++
&lt;span class="nb"&gt;date&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;"2015-06-20T14: 02: 37 + 02: 00"&lt;/span&gt;
title &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;"About"&lt;/span&gt;
hidden &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;true
&lt;/span&gt;menu &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;"main"&lt;/span&gt;
+++

Software Developer at &lt;span class="o"&gt;[&lt;/span&gt;Calindra]&lt;span class="o"&gt;(&lt;/span&gt;https://calindra.tech/&lt;span class="o"&gt;)&lt;/span&gt;, Coordinator of &lt;span class="o"&gt;[&lt;/span&gt;Meetup GopheRio]&lt;span class="o"&gt;(&lt;/span&gt;https://www.meetup.com/pt-BR/GopheRio&lt;span class="o"&gt;)&lt;/span&gt;, volunteer at &lt;span class="o"&gt;[&lt;/span&gt;Poder &lt;span class="k"&gt;do &lt;/span&gt;Voto]&lt;span class="o"&gt;(&lt;/span&gt;https : //poderdovoto.org&lt;span class="o"&gt;)&lt;/span&gt;, Founder of &lt;span class="o"&gt;[&lt;/span&gt;Simbah]&lt;span class="o"&gt;(&lt;/span&gt;https://www.simbahdc.com/&lt;span class="o"&gt;)&lt;/span&gt;, writer &lt;span class="k"&gt;in &lt;/span&gt;his spare &lt;span class="nb"&gt;time&lt;/span&gt;, father of an amazing girl and husband of the best illustrator &lt;span class="k"&gt;in &lt;/span&gt;Brazil &lt;span class="o"&gt;[&lt;/span&gt;&lt;span class="nb"&gt;link&lt;/span&gt;&lt;span class="o"&gt;](&lt;/span&gt;https://www.instagram.com/aruizilustra/&lt;span class="o"&gt;)!&lt;/span&gt;

I like to develop &lt;span class="k"&gt;in &lt;/span&gt;many languages ​​and use each one &lt;span class="k"&gt;for &lt;/span&gt;its correct purpose. The languages ​​I am most familiar with are: Java, Go, Python, JavaScript &lt;span class="o"&gt;(&lt;/span&gt;TypeScript&lt;span class="o"&gt;)&lt;/span&gt;&lt;span class="nb"&gt;.&lt;/span&gt;

TDD, Clean Code, CI and CD enthusiast and good development practices.

&lt;span class="k"&gt;***&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;h4&gt;
  
  
  Making our website available on the internet
&lt;/h4&gt;

&lt;p&gt;Now, back to Git. We will send the changes we made to the files there to the repository we created. For this, we will execute the following commands at the root of the project.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nv"&gt;$ &lt;/span&gt;hugo &lt;span class="nt"&gt;-d&lt;/span&gt;&lt;span class="nb"&gt;.&lt;/span&gt;
&lt;span class="nv"&gt;$ &lt;/span&gt;git add &lt;span class="k"&gt;*&lt;/span&gt;
&lt;span class="nv"&gt;$ &lt;/span&gt;git commit &lt;span class="nt"&gt;-m&lt;/span&gt; &lt;span class="s2"&gt;"Submitting site with description"&lt;/span&gt;
&lt;span class="nv"&gt;$ &lt;/span&gt;git push origin master
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;Now if you access &lt;a href="https://yourrepository.github.io"&gt;https://yourrepository.github.io&lt;/a&gt; you will see your website online, for free and without having to write 1 line of code, only texts.&lt;/p&gt;

&lt;h4&gt;
  
  
  Conclusion
&lt;/h4&gt;

&lt;p&gt;There are some ways to create a website for free without having to write code, like wix.com, WordPress * and others. Hugo is a good tool for those who already program or are starting because it requires little (if any) knowledge in the development and tools to be able to make a website.&lt;/p&gt;

&lt;p&gt;Hugo has several amazing themes and easy to use, if you want to try to modify yours, go for it!&lt;/p&gt;

&lt;p&gt;I hope you enjoyed the post and send your questions on my twitter.&lt;/p&gt;

&lt;p&gt;To the next!&lt;/p&gt;

</description>
      <category>go</category>
      <category>github</category>
      <category>hugo</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
