sergio.am/README.md

25 lines
506 B
Markdown
Raw Normal View History

2021-11-02 19:10:47 +00:00
2021-10-15 19:01:54 +00:00
# sergio.am
2021-11-02 19:10:47 +00:00
Notas y apuntes, futuro contenido de static pages en sergio.am
```shell
2022-05-16 09:56:48 +00:00
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
2021-11-02 19:10:47 +00:00
```
```shell
cd _site
python3 -m http.server 4000
```
http://localhost:4000
2022-06-24 07:53:57 +00:00
# Drafts
Usar directorio `_drafts` y para ver el doc usar:
```shell
docker run -it --rm --volume="$PWD:/srv/jekyll:Z" -p 4000:4000 jekyll/jekyll jekyll serve --drafts
```