standalone
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-04-14 00:43:47 +02:00
parent 015e7b6ed2
commit dbcdea640a
2 changed files with 4 additions and 4 deletions

View File

@ -7,14 +7,14 @@ Primer post, sin mucho que contar para variar. Al menos habrá un bonito _commit
La chuleta para hacer andar esto es la siguiente:
```shell
```bash
docker run -it --rm --volume="$PWD:/srv/jekyll:Z" jekyll/jekyll jekyll build
docker run -it --rm --volume="$PWD:/srv/jekyll:Z" -p 4000:4000 jekyll/jekyll jekyll serve
```
O bien, si ya está _buildeado_:
```shell
```bash
cd _site
python3 -m http.server 4000
```