hackertours/README.md

21 lines
306 B
Markdown
Raw Permalink Normal View History

2023-12-07 19:37:47 +01:00
# Hackertours Web Site
2024-09-27 18:29:18 +02:00
## Run in dev mode
```shell
hugo server --buildFuture --buildDrafts
```
Then open http://localhost:1313
2023-12-07 19:37:47 +01:00
## Build locally
```shell
rm -rf public
hugo
docker build -t hackertours .
docker run -it --rm --name hackertours -p 8888:80 hackertours
```
Then open http://localhost:8888