Front page for lumbung.space
Go to file
cellarspoon 1f57c9b2de
fix: really ignore cache
2022-01-06 16:02:31 +01:00
archetypes shuffle hugo setup to the front 2021-12-15 12:08:23 +01:00
themes/lumbung-theme add padding below video title 2022-01-06 17:42:04 +05:00
.dockerignore fix: ignore also when docker building 2022-01-05 12:06:04 +01:00
.drone.yml feat: add content generation 2022-01-05 12:53:04 +01:00
.gitignore Merge branch 'main' of ssh://git.autonomic.zone:2222/ruangrupa/living-room into main 2022-01-05 10:30:06 +01:00
Dockerfile.hugo feat: CI/CD setup 2022-01-05 11:38:51 +01:00
Dockerfile.scripts fix: really ignore cache 2022-01-06 16:02:31 +01:00
README.md docs: how to wipe 2022-01-05 14:32:33 +01:00
compose.yml fix: deploy to correct folder 2022-01-05 14:29:41 +01:00
config.toml reindent lines 2022-01-05 17:58:28 +05:00
feeds_list.txt feat: include feed generation 2022-01-05 13:49:06 +01:00
makefile feat: include feed generation 2022-01-05 13:49:06 +01:00

README.md

living room

Build Status

A new attempt to bring together the ideas of the "splash" page, "portal" page and a comfortable digital "living room" experience for lumbung[dot]space. This is a work in progress. The end goal of this is to have a new design and implementation for lumbung.space for January 2022.

FAQ

How does the CI/CD work?

The .drone.yml triggers a build on drone.autonomic.zone of the Dockerfile.hugo and the Dockerfile.scripts and then deploys the compose.yml stack using docker stack deploy.

How often is the content regenerated?

See the sleep ... statements in the compose.yml.

How do I see if content generation is working?

(requires lumbung.space docker context)

  • docker service logs -f beta_lumbung_space_peertube
  • docker service logs -f beta_lumbung_space_calendar
  • docker service logs -f beta_lumbung_space_feed

Where beta_lumbung_space_<service-name> and you see the service name in the compose.yml.

How do I add a feed?

Add your RSS feed URL to feeds_list.txt and don't forget this deploy step.

How do I wipe all the generated content?

(requires lumbung.space docker context)

docker exec -it $(docker container ls -q -f name=beta_lumbung_space_app) bash -c "rm -rf /src/content/*"

Hacking

Generate the site

Install Hugo and hugo serve --watch

Generate lumbung[dot]space posts

Do this manually first:

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

export OUTPUT_DIR=content/feed
lumbunglib-feed  # reads ./feeds_list.txt

Afterwards, you can automatically run it with make gen.

After a git pull, you may need to run pip install git+https://git.autonomic.zone/ruangrupa/lumbunglib again.

Manually deploying new images

  • docker login -u decentral1se -p $(logins/dockerhub/decentral1se)
  • make push-hugo
  • make push-scripts

Manually deploy the site

(requires lumbung.space docker context)

  • make deploy

Deploy a new feeds_list.txt

Increment the _v<n> (e.g. v1 -> v2) in compose.yml configs to avoid any deployment error.