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

https://github.com/pymc-devs/pymcon_web_series_website


https://github.com/pymc-devs/pymcon_web_series_website

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Quick Start guide

1. Install Hugo
To install `HUGO` on your system, follow the instructions on the [installation guide](https://gohugo.io/getting-started/installing/).

2. Clone your forked copy of the project.
```
git clone https://github.com//pymcon_2022.git
```

3. Navigate to the website directory 📁 .
```
cd website
```

4. Start the Hugo server
```
hugo server
```

5. Build static pages
```
hugo
```

For more details on Hugo follow the [Quick Start](https://gohugo.io/getting-started/quick-start/) guide.

## Docker
Pull this image and follow the instructions in the README
https://hub.docker.com/r/klakegg/hugo/

```
docker run --rm -it \
-v $(pwd):/src \
-p 1313:1313 \
klakegg/hugo:0.101.0 \
server
```