21 lines
306 B
Markdown
21 lines
306 B
Markdown
# Hackertours Web Site
|
|
|
|
## Run in dev mode
|
|
|
|
```shell
|
|
hugo server --buildFuture --buildDrafts
|
|
```
|
|
|
|
Then open http://localhost:1313
|
|
|
|
## 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
|