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.

fix: Move creation of data dirs as a dependency to prep step

+2 -1
+1 -1
mise/tasks/build.toml
··· 33 33 34 34 [build-server] 35 35 description = "Build the server-side of Lumina" 36 - depends = ["build-client", "create-data-dirs"] 36 + depends = ["build-client"] 37 37 run = ["cargo build"] 38 38 39 39 [build-server-release]
+1
mise/tasks/podman.toml
··· 57 57 58 58 [local-devel-prep] 59 59 description = "Just runs the Podman image for a Redis and Postgres server for local development run to connect to." 60 + depends = ["create-data-dirs"] 60 61 run = [ 61 62 "podman run --replace --name lumina-redis -p 6379:6379 -v ./data/redis:/data -d redis/redis-stack:7.2.0-v18", 62 63 "podman run --replace -d -p 5432:5432 --name luminadb -e POSTGRES_USER=lumina -e POSTGRES_PASSWORD=lumina_pw -e POSTGRES_DB=lumina_config -v ./data/postgres:/var/lib/postgresql/data:Z postgres:17-alpine3.22",