An open API service indexing awesome lists of open source software.

https://github.com/devangcx/devangcx.github.io

Blog
https://github.com/devangcx/devangcx.github.io

Last synced: 8 days ago
JSON representation

Blog

Awesome Lists containing this project

README

          

## Local build
Follow the steps below to install Hugo on your local machine.

Prerequisites
- Git
- Go
- Chocolatey (for Windows users) This should be installed if you have Node.js
installed.
- PowerShell (Not Windows PowerShell)

> [!IMPORTANT]
> Follow all the steps in an elevated PowerShell instance.

Install Hugo
```powershell
choco install hugo-extended
```
Verify Hugo installation
```powershell
hugo version
```
Create the project directory
```powershell
hugo new site
```
Navigate to the project directory
```powershell
cd
```
If you don't have a Github repository yet, initialize one now. But if you have
one, skip this step. And copy all the files and folder from the project directory
to your Github repository folder.
```powershell
git init
```
Now, initialize the project as a hugo module.
```powershell
hugo mod init github.com//
```
Verify if the project is setup correctly.
```powershell
hugo server --openBrowser
```
To stop the server, press `Ctrl + C`.