konfluks rename

This commit is contained in:
decentral1se 2022-07-18 12:30:48 +02:00
parent 2ad8516c93
commit a5efccca0c
No known key found for this signature in database
GPG Key ID: 03789458B3D0C410
8 changed files with 25 additions and 32 deletions

9
.gitignore vendored
View File

@ -1,14 +1,15 @@
*.lock
.DS_Store
.env
.gitignore
.todo
.venv/
/content/calendar/
/content/pen/
/content/shouts/
/content/social/
/content/timeline/
/content/tv/
/etags/
/public/
resources
/etags/
.gitignore
.todo
.DS_Store

View File

@ -4,7 +4,7 @@ RUN apk add --no-cache git bash
WORKDIR /src/
RUN git clone https://git.autonomic.zone/ruangrupa/lumbunglib /src/
RUN git clone https://git.autonomic.zone/ruangrupa/konfluks /src/
RUN pip install -U -I setuptools pip

View File

@ -2,12 +2,11 @@
[![Build Status](https://drone.autonomic.zone/api/badges/ruangrupa/lumbung.space/status.svg?ref=refs/heads/main)](https://drone.autonomic.zone/ruangrupa/lumbung.space)
> 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`](https://lumbung.space) for January 2022.
![lumbung.space logo](https://lumbung.space/img/alt-lumbung-logo.jpeg)
## FAQ
> lumbung.space is an online platform by and for the lumbung-interlokal and lumbung artists. Many of the artists and collectives invited for documenta fifteen are located far away from each other, with their own contextual realities and vulnerabilities. To be able to work together over such distances, the act of documenting the process, writing together, and keeping each other informed within the network is one of the most important parts of the process of building the lumbung. This process is known as harvesting. Thus, lumbung.space was made to provide a number of tools and a collective publishing outlet for this diverse network to experiment and share the collective processes through harvests. Like a vibrant archive and a digital living room, it allows connection, support, and sharing of knowledge. Learn more on [lumbung.space](https://lumbung.sace)...
## Technical FAQ
### How does the CI/CD work?
@ -50,26 +49,26 @@ Do this manually first:
```
mkdir -p content
python3 -m venv .venv && source .venv/bin/activate
pip install git+https://git.autonomic.zone/ruangrupa/lumbunglib
pip install git+https://git.autonomic.zone/ruangrupa/konfluks
export CALENDAR_URL="https://cloud.lumbung.space/remote.php/dav/public-calendars/WbnHM8YdCkKT6bcT?export"
export OUTPUT_DIR=content/calendar
lumbunglib-cal
konfluks-cal
export OUTPUT_DIR=content/tv
lumbunglib-vid
konfluks-vid
export OUTPUT_DIR=content/shouts
lumbunglib-feed # reads ./feeds_list.txt
konfluks-feed # reads ./feeds_list.txt
export OUTPUT_DIR=content/social
export MASTODON_AUTH_TOKEN=foobar
lumbunglib-hash
konfluks-hash
```
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.
After a `git pull`, you may need to run `pip install git+https://git.autonomic.zone/ruangrupa/konfluks` again.
### Manually deploying new images

View File

@ -46,7 +46,7 @@ services:
while true
do
echo 'generating tv posts...'
/usr/local/bin/lumbunglib-vid
/usr/local/bin/konfluks-vid
sleep 300
done
"
@ -63,7 +63,7 @@ services:
while true
do
echo 'generating calendar posts...'
/usr/local/bin/lumbunglib-cal
/usr/local/bin/konfluks-cal
sleep 400
done
"
@ -82,7 +82,7 @@ services:
while true
do
echo 'generating shouts posts...'
/usr/local/bin/lumbunglib-feed
/usr/local/bin/konfluks-feed
sleep 500
done
"
@ -101,7 +101,7 @@ services:
while true
do
echo 'generating pen posts...'
/usr/local/bin/lumbunglib-feed
/usr/local/bin/konfluks-feed
sleep 600
done
"
@ -120,7 +120,7 @@ services:
while true
do
echo 'generating social posts...'
/usr/local/bin/lumbunglib-hash
/usr/local/bin/konfluks-hash
sleep 700
done
"
@ -139,7 +139,7 @@ services:
while true
do
echo 'generating timeline...'
/usr/local/bin/lumbunglib-timeline
/usr/local/bin/konfluks-timeline
sleep 500
done
"

View File

@ -7,7 +7,7 @@ pluralizeListTitles = "false"
[params]
logo = "/img/logo.svg"
favicon = "/img/favicon.ico"
description = 'a digital living room for artists'
description = 'a digital living room for the lumbung ekosistem'
images = ['/img/logo.png']
title = 'lumbung dot space'

View File

@ -8,7 +8,7 @@ https://gudskul.art/feed/
https://inland.org/feed/
https://jatiwangiartfactory.tumblr.com/rss/
https://projectartworks.org/feed/
https://ruangrupa.id/feed/
https://wajukuuarts.wordpress.com/feed/
https://www.masartemasaccion.org/feed/?lang=en
https://ruangrupa.id/feed/
https://www.ruralschoolofeconomics.info/rss.xml

View File

@ -1 +1 @@
https://pen.lumbung.space/feed/?post_type=timeline
https://pen.lumbung.space/feed/?post_type=timeline

View File

@ -3,13 +3,6 @@ DEFAULT: serve
serve:
@hugo serve --watch
gen:
@CALENDAR_URL="https://cloud.lumbung.space/remote.php/dav/public-calendars/WbnHM8YdCkKT6bcT?export"; \
OUTPUT_DIR=content/calendar; \
lumbunglib-cal && \
OUTPUT_DIR=content/tv lumbunglib-vid && \
OUTPUT_DIR=content/shouts lumbunglib-feed
push-hugo:
@docker build -t decentral1se/beta.lumbung.space -f Dockerfile.hugo . && \
docker push decentral1se/beta.lumbung.space