This page looks best with JavaScript enabled

Build your own website in 10 min! with hugo

 ·  ☕ 6 min read

Yes you read it right, you can build and host your website in 10 min 😎.

But how?

Static site generators to the rescue

Ok but first, what is a static site? 😕

Basically websites are of two types, static and dynamic. A static site as the name sounds it is - static, constant and fixed. It doesn’t change dynamically when a developer makes a change to a file . They just create the static content(HTML and CSS) and upload them on to the server where it remains unchanged.

Where as dynamic sites are in almost constant state of change and are powered by servers or Content Management Systems(CMS). Server or CMS builds each page dynamically whenever a change occurs. When a URL is requested to fetch, CMS gets the appropriate data from the DB, loads on HTML, renders the content within template and returns formatted HTML to client’s browser. This process is also known as server side processing.

Looks like CMS website is the solution, then why SSG? 🤷‍♀️

Oh boy, you are a tough cookie. Lets see few of the disadvantages of CMS in brief.

  • As CMS started growing popularity, CMS plugins or software have become more vulnerable to cyber attacks and this number is growing.
  • Performance issues. Obviously, because server is doing the more work. Page needs to be loaded each and every time a request is sent, whenever a user visits a site, backend code needs to startup, interact with DB, construct a HTTP response and send it back to server, after all this stuff is done, finally HTML file is returned to display the content.

Ok, how SSGs helps us?

Static site generators (SSGs) allow you to have a compromise between writing out a bunch of static html pages and using a potentially heavy (CMS) - retaining the benefits of both 😮 . Cool right? SSGs give us a flexibility to write code dynamically and publish statically.

SSGs generates all the static pages of your site at once and deploys it to HTTP server.

Few of the benefits of using SSGs in brief

  • Speed and performance.
  • Secured. Now we dont have the problems that come with CMS powered websites. Since static website is solely static files, they have no DB - no DB means no chance of getting hacked .
  • Improved cost and reliabilty. As we dont have a DB, we dont get connection errors like failed to establish connection to DB and also less maintenance costs as we dont have DB any more.

Types of SSGs

Now, lets look at some of the most popular options.

  • Hugo is a very popular SSG which claims itself as a fastest framework for building sites. It is written in Go
  • Next.js is a server-rendered framework developed on top of React.
  • Gatsby.js is built in React and uses GraphQL to manipulate data. It works great with documentation and blogs.
  • Jekyll is written using Ruby.

Enough with words, Let’s get started by building a site. Shall we?

Build site with Hugo

First things first…

Install hugo

To install hugo on linux(Ubuntu and Debian) from your terminal, run

1
sudo apt-get install hugo

For other platforms, check the official guide

Create a site

Once you install hugo, create a hugo site by running

1
hugo new site mywebsite

Select a theme

You need to pick a theme before starting. Wish there was some default theme to get started with. Anyways, there are lots of choices over here. I personally recommend to choose Minimo as it is simple to get started with (You can tweak it later), and also i’m a great fan of minimalism 😉

Installing the theme

Basically you can install a theme in 3 ways.

  • Download the zip file and unzip it manually in themes folder
  • As a git clone
  • As a git submodule.

I recommend that you avoid the git submodule workflow they suggest on the page. You surely want to tweak the theme in future. Its best to have a repo for both the content and the theme same, as the deployment becomes easier (speaking out of personal experience 😅 , this method gave me a nightmare 😓).

Ok jokes apart. You can download the zip and unzip it manually in the themes/minimo . This method doesn’t work greatly all the time.

So I recommend to clone the repository. From your terminal run

1
git clone --depth 1 https://github.com/MunifTanjim/minimo themes/minimo

For installation using other methods and also to tweak the website according to your needs. Check out the official docs

Once you have cloned the repo, you need to configure the config.toml . As this is the file, which tells Hugo some details of the configuration to the website you created. So copy the config.toml from the theme whichever you have installed so that you dont accidentally change the theme’s info. You can change the info from theme once you are familiar with hugo. If you are a beginner it is not recommended to do so.

1
cp themes/minimo/exampleSite/config.toml .

That’s it your website is created. Tweak the config.toml with your details and start using it. 😃

Add content and start the server

To start the server, run the following command in terminal

1
hugo serve -D

-D command builds the static pages.

You can create a new post by creating a new .md file, prefixing it with your filename. To create some content run

1
hugo new posts/firstpost.md

This posts folder automatically gets created in content folder. Edit this newly created file with your content

It will look something like this.

1
2
3
4
5
---
title: "First post"
date: 2019-03-26T08:47:11+01:00
draft: true
---

Host and publish the site on your custom domain

Once you have created your site. You can host it on github-pages or netlify or vercel or gitlab. My personal favourite is github-pages.

To know how to host it on gh-pages, refer this official doc. By hosting the site on the respective platform, you will be given a default domain, you can use it or if you wish to have custom domain. Follow the below steps.

If you have hosted it on github pages.

  • Go to your repository settings, under github pages, choose gh-pages branch as the source of your website. Under custom domain, add your own domain. Thats it your website is now live! 😍

Few resources to learn hugo

Giraffe Academy playlist on youtube

Official Hugo Docs


Learn more about SSGs here


If you found this helpful, please give a shoutout to @gsavitha_ and share this article to help others. For more articles like this, subscribe to my Newsletter and get the latest updates straight to your inbox.

Share on