-
Notifications
You must be signed in to change notification settings - Fork 51
Installation
Bino Kochumol Varghese edited this page Nov 17, 2024
·
4 revisions
In this post, we'll cover how to install Hugo and set up your first website with the Lightbi theme. For detailed steps, refer to Hugo’s quick-start guide.
- Install Hugo - Make sure you install latest version of hugo.
- Install Git.
-
Create a New Hugo Site
hugo new site <name of site> cd <name of site> git init git submodule add https://github.com/binokochumolvarghese/lightbi-hugo themes/lightbi-hugo
-
After completing the steps above, copy the contents of
exampleSite/contents
into thecontent
folder of your website. -
Next, copy
hugo.toml
to the root folder of the website. -
Finally, run the following command.
hugo server
-
Preview Your Site:
Go tohttp://localhost:1313/
to view your website in development mode.
That’s it! You’re ready to start building.