diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-06-06 09:09:16 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-06-06 09:09:16 -0300 |
commit | b6d9069b98df5947409d6cc2c4181b57fe23b0d3 (patch) | |
tree | 4c91a60f5e1344f108a8d02ced043505e8955cfd | |
parent | b1a77ee29c3b218fb76e9d9608913874870d110b (diff) | |
download | bookup-b6d9069b98df5947409d6cc2c4181b57fe23b0d3.tar.gz bookup-b6d9069b98df5947409d6cc2c4181b57fe23b0d3.tar.bz2 |
Reorganize content; minor fixes
-rw-r--r-- | .gitignore | 21 | ||||
l--------- | bookup | 1 | ||||
-rw-r--r-- | content/published/00-intro/intro.md | 38 | ||||
-rw-r--r-- | content/published/05-structure/structure.md | 21 | ||||
-rw-r--r-- | content/published/10-installation/installation.md | 14 | ||||
-rw-r--r-- | kvmxfile | 2 |
6 files changed, 58 insertions, 39 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a640777 --- /dev/null +++ b/.gitignore @@ -0,0 +1,21 @@ +# Bookdown +.Rhistory + +# Assets +archive/* +backups/* +compiled/* +slides/*.pdf +_main_files + +# Nextcloud +._sync_* + +# Metadata +.metadata + +# Secrets +.htpasswd + +# Local customizations +Makefile.local @@ -1 +0,0 @@ -bookup
\ No newline at end of file diff --git a/content/published/00-intro/intro.md b/content/published/00-intro/intro.md index f6613d3..80ede4e 100644 --- a/content/published/00-intro/intro.md +++ b/content/published/00-intro/intro.md @@ -4,40 +4,4 @@ Criar Bookup ajudou a manter um esquema uniforme, ao invés de ter que implementar e corrigir funcionalidades paralelamente em muitos repositórios, já que os livros tendem a aumentar. Lidando com a produção de conteúdo como lidamos com outros códigos, mas sem algoritmizar, ao contrário: usando um -processo arbóreo-espiral. - -# Folder structure {#structure} - -Book folder structure: - -* `archive`: to hold archives (older book versions). -* `content`: book content: - * `drafts`: leave here texts still being redacted. - * `published`: here goes all the material to be compiled. -* `notes`: notebook. -* `slides`: slides in Markdown format. -* `site`: optional HTML used for the base site; if this exists, the book will - be placed under `public/book` or something like that. -* `public`: compiled book (HTML, PDF and other formats): - * `notes`: compiled notebook. - * `book`: compiled book if there's a `site` folder, otherwise book contents - will be placed in the root of the public folder. -* `biblio`: bibliography. -* `images`: images folder. -* `vendor/bookup`: - * `content`: Bookup documentation. - * `vendor/{Fuse.js,}`: dependencies. - -# Instalation {#installation} - -Setup procedure: - -* Vendorizantion (`bookup` and bibliography repositories). -* Symlinking. -* Basic files: - * `images/cover.png`. - * `_bookup.yml`. - * `_biblio.yml`. - * `LICENSE`. - * `DISCLAIMER`. - * `snippets/`. +processo arbóreo-espiral^[@TODO: definir o método arbóreo-espiral.]. diff --git a/content/published/05-structure/structure.md b/content/published/05-structure/structure.md new file mode 100644 index 0000000..d43703f --- /dev/null +++ b/content/published/05-structure/structure.md @@ -0,0 +1,21 @@ +# Folder structure {#structure} + +Book folder structure: + +* `archive`: to hold archives (older book versions). +* `content`: book content: + * `drafts`: leave here texts still being redacted. + * `published`: here goes all the material to be compiled. +* `notes`: notebook. +* `slides`: slides in Markdown format. +* `site`: optional HTML used for the base site; if this exists, the book will + be placed under `public/book` or something like that. +* `public`: compiled book (HTML, PDF and other formats): + * `notes`: compiled notebook. + * `book`: compiled book if there's a `site` folder, otherwise book contents + will be placed in the root of the public folder. +* `biblio`: bibliography. +* `images`: images folder. +* `vendor/bookup`: + * `content`: Bookup documentation. + * `vendor/{Fuse.js,}`: dependencies. diff --git a/content/published/10-installation/installation.md b/content/published/10-installation/installation.md new file mode 100644 index 0000000..a4230e3 --- /dev/null +++ b/content/published/10-installation/installation.md @@ -0,0 +1,14 @@ +# Instalation {#installation} + +Setup procedure: + +* Vendorizantion (`bookup` and bibliography repositories). +* Symlinking. +* Basic files: + * `.gitignore`. + * `images/cover.png`. + * `_bookup.yml`. + * `_biblio.yml`. + * `LICENSE`. + * `DISCLAIMER`. + * `snippets/`. @@ -123,7 +123,7 @@ xrandr="0" # Set additional hostfwd mappings #port_mapping="hostfwd=tcp:127.0.0.1:8080-:80,hostfwd=tcp:127.0.0.1:8443-:443" -port_mapping="hostfwd=tcp:127.0.0.1:9000-:80" +port_mapping="hostfwd=tcp:127.0.0.1:9091-:80" # Where the guest image is stored #image="$HOME/.local/share/kvmx/$VM/box.img" |