educatic-info/docs/jekyll/README.md

23 lines
464 B
Markdown
Raw Normal View History

2022-07-07 23:23:15 +02:00
[<< back](../README.md) | [HOME](../../README.md)
2022-04-08 18:41:29 +02:00
# Jekyll
Enlaces de interés
* [Alojamiento de la gema Ruby](https://rubygems.org/gems/jekyll)
* [Página principal](https://jekyllrb.com/)
## Instalación
1. Tener Ruby instalado.
2022-04-08 18:49:27 +02:00
2. Se require tener el compilador de g++ instalado (`zypper in gcc-c++`)
2022-04-08 19:17:50 +02:00
3. Instalar la gema `sudo gem install jekyll`.
2022-04-08 18:41:29 +02:00
## Demo
```
2022-04-08 19:17:50 +02:00
jekyll new site
cd site
2022-04-08 18:41:29 +02:00
bundle exec jekyll serve
# => Now browse to http://localhost:4000
```