For now? I'm experimenting on an old concept.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Make Containerfile default built method.


Signed-off-by: MLC Bloeiman <mar@strawmelonjuice.com>

+7 -2
+7 -2
Justfile
··· 7 7 build-styles: 8 8 cd ./client/ && tailwindcss -i ./app.css -o ../server/priv/static/lumina_client.css 9 9 10 - [doc("Build the server-side of Lumina")] 10 + [doc("Build the server-side of Lumina into a Podman image, from the Flake! This builds most of Lumina inside your worktree, albeit not tracked.")] 11 11 [group('building')] 12 - build-server: build-client 12 + build-server-flake: build-client 13 13 cd server; \ 14 14 gleam export erlang-shipment 15 15 git add -N ./server/build/erlang-shipment/* -f ··· 23 23 @echo "Loading into Podman ..." 24 24 @podman load < result && echo -e "Podman image \033[1;35mluminapeonies:latest\033[0m built!" 25 25 @rm result 26 + 27 + [doc("Build the server-side of Lumina from the Containerfile")] 28 + [group('building')] 29 + build-server: 30 + podman build . --tag luminapeonies 26 31 27 32 [doc("Build the client-side of Lumina and it's styles")] 28 33 [group('building')]