https://github.com/devangcx/devangcx.github.io
Blog
https://github.com/devangcx/devangcx.github.io
Last synced: 8 days ago
JSON representation
Blog
- Host: GitHub
- URL: https://github.com/devangcx/devangcx.github.io
- Owner: devangcx
- Created: 2019-07-07T14:49:00.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-11-10T01:32:17.000Z (4 months ago)
- Last Synced: 2025-11-10T02:25:51.338Z (4 months ago)
- Language: HTML
- Homepage: https://devang.cx/
- Size: 217 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`.