···77build-styles:
88 cd ./client/ && tailwindcss -i ./app.css -o ../server/priv/static/lumina_client.css
991010-[doc("Build the server-side of Lumina")]
1010+[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.")]
1111[group('building')]
1212-build-server: build-client
1212+build-server-flake: build-client
1313 cd server; \
1414 gleam export erlang-shipment
1515 git add -N ./server/build/erlang-shipment/* -f
···2323 @echo "Loading into Podman ..."
2424 @podman load < result && echo -e "Podman image \033[1;35mluminapeonies:latest\033[0m built!"
2525 @rm result
2626+2727+[doc("Build the server-side of Lumina from the Containerfile")]
2828+[group('building')]
2929+build-server:
3030+ podman build . --tag luminapeonies
26312732[doc("Build the client-side of Lumina and it's styles")]
2833[group('building')]