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
- Host: GitHub
- URL: https://github.com/pymc-devs/pymcon_web_series_website
- Owner: pymc-devs
- Created: 2022-10-02T21:30:05.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-09T04:36:27.000Z (over 2 years ago)
- Last Synced: 2025-06-13T03:22:52.166Z (about 1 year ago)
- Language: HTML
- Homepage: http://www.pymcon.com
- Size: 56.8 MB
- Stars: 5
- Watchers: 8
- Forks: 11
- Open Issues: 11
-
Metadata Files:
- Readme: readme.md
- Contributing: CONTRIBUTING.md
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
```