Compare commits

2 Commits

Author SHA1 Message Date
4205d64ff6 more hacking docs 2021-12-15 12:37:21 +01:00
e9115e275d more docs 2021-12-15 12:35:29 +01:00

View File

@ -7,13 +7,23 @@
## Hacking
[Install Hugo](https://gohugo.io/getting-started/installing/).
### Generate the site
`hugo serve`
### Generate `lumbung[dot]space` posts
```
$ python3 -m venv .venv && source .venv/bin/activate
$ pip install -e git+https://git.autonomic.zone/ruangrupa/lumbunglib
$ export OUTPUT_DIR=
$ export CALENDAR_URL="https://cloud.lumbung.space/remote.php/dav/public-calendars/WbnHM8YdCkKT6bcT?export"
$ lumbunglib-cal
$ lumbunglib-vid
mkdir -p content
python3 -m venv .venv && source .venv/bin/activate
pip install git+https://git.autonomic.zone/ruangrupa/lumbunglib
export CALENDAR_URL="https://cloud.lumbung.space/remote.php/dav/public-calendars/WbnHM8YdCkKT6bcT?export"
export OUTPUT_DIR=content/calendar
lumbunglib-cal
export OUTPUT_DIR=content/video
lumbunglib-vid
```