All checks were successful
Build and Deploy Hugo Site / build-and-deploy (push) Successful in 9s
29 lines
589 B
Markdown
29 lines
589 B
Markdown
# HackInPovo Website
|
|
|
|
This repository contains the source code for the HackInPovo website, built using [Hugo](https://gohugo.io/), a fast and flexible static site generator.
|
|
|
|
## Repository clone
|
|
|
|
When cloning, pay close attention to clone recursively to import the theme repository.
|
|
```bash
|
|
git clone --recursive <repo>
|
|
```
|
|
|
|
|
|
## Run the Website Locally
|
|
|
|
To run the HackInPovo website locally, use the following commands:
|
|
|
|
```bash
|
|
hugo server -D
|
|
```
|
|
|
|
## Build the Website
|
|
|
|
To build the website, use:
|
|
|
|
```bash
|
|
hugo --minify
|
|
```
|
|
|
|
The resulting static files will be in the `public` directory.
|