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.

meta: update mise configs to smoothen DX

+8 -5
+3
mise.toml
··· 3 3 gleam = "1.12.0" 4 4 "rust" = { version = "latest", components = "rust-analyzer" } 5 5 6 + 6 7 [settings] 8 + [settings.cargo] 9 + binstall = false # This fails in some cases, watchexec can be compiled from source quickly enough 7 10 [settings.npm] 8 11 bun = true 9 12
+4 -4
mise/tasks/podman.toml
··· 24 24 "podman run -d --replace --name lumina-redis-commander --pod lumina-postgres-pod -e REDIS_HOSTS=lumina-redis -e PORT=8082 ghcr.io/joeferner/redis-commander:latest", 25 25 "podman run -d --replace --name lumina-pgweb --pod lumina-postgres-pod -e DATABASE_URL=postgres://lumina:lumina_pw@luminadb:5432/lumina_config?sslmode=disable sosedoff/pgweb:latest", 26 26 # Build and run 27 - "podman run -d --name luminadb --pod lumina-postgres-pod -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", 27 + "podman run -d --name luminadb --pod lumina-postgres-pod -e POSTGRES_USER=lumina -e POSTGRES_PASSWORD=lumina_pw -e POSTGRES_DB=lumina_config -v ./data/postgres:/var/lib/postgresql/data:Z docker.io/library/postgres:17-alpine3.22", 28 28 "podman run -d --replace --name lumina-redis --pod lumina-postgres-pod -v ./data/redis:/data:Z redis", 29 29 "podman build -f build.Dockerfile -t lumina-server:dev .", 30 30 "echo pgweb on http://127.0.0.1:8081, Redis Commander on http://127.0.0.1:8082", ··· 45 45 "podman build --build-arg optimize_build=true -t lumina-server:latest .", 46 46 "podman pod create --name lumina-postgres-pod -p 8085:8085 -p 5432:5432", 47 47 "podman run -d --replace --name lumina-redis --pod lumina-postgres-pod -v ./data/redis:/data redis", 48 - "podman run -d --name luminadb --pod lumina-postgres-pod -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", 48 + "podman run -d --name luminadb --pod lumina-postgres-pod -e POSTGRES_USER=lumina -e POSTGRES_PASSWORD=lumina_pw -e POSTGRES_DB=lumina_config -v ./data/postgres:/var/lib/postgresql/data:Z docker.io/library/postgres:17-alpine3.22", 49 49 "podman run --name lumina-server-postgres --pod lumina-postgres-pod -e LUMINA_DB_TYPE=postgres -e LUMINA_POSTGRES_HOST=localhost -e LUMINA_POSTGRES_PORT=5432 -e LUMINA_POSTGRES_USERNAME=lumina -e LUMINA_POSTGRES_PASSWORD=lumina_pw -e LUMINA_POSTGRES_DATABASE=lumina_config -e LUMINA_SERVER_PORT=8085 -e LUMINA_SERVER_ADDR=0.0.0.0 lumina-server:latest", 50 50 ] 51 51 ··· 59 59 description = "Just runs the Podman image for a Redis and Postgres server for local development run to connect to." 60 60 depends = ["create-data-dirs"] 61 61 run = [ 62 - "podman run --replace --name lumina-redis -p 6379:6379 -v ./data/redis:/data -d redis/redis-stack:7.2.0-v18", 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", 62 + "podman run --replace --name lumina-redis -p 6379:6379 -v ./data/redis:/data -d docker.io/redis/redis-stack:7.2.0-v18", 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 docker.io/library/postgres:17-alpine3.22", 64 64 ] 65 65 66 66 [local-devel-dataexplorer]
+1 -1
mise/tasks/run.toml
··· 7 7 env.LUMINA_POSTGRES_PASSWORD = "lumina_pw" 8 8 9 9 [local-devel-watch] 10 - tools.watchexec = "latest" 10 + tools."cargo:watchexec-cli" = "latest" 11 11 description = "Run the server in development mode with file watching" 12 12 run = "watchexec --restart --stop-timeout=0 --shell=sh -e rs,gleam,toml,css,ts,json mise run local-devel" 13 13 run_windows = "watchexec --restart --stop-timeout=0 --shell=cmd -e rs,gleam,toml,css,ts,json mise run local-devel"