this repo has no description
0
fork

Configure Feed

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

Restore mise tasks removed while modularising.

+53
+1
mise.toml
··· 13 13 "./mise/tasks/format.toml", 14 14 "./mise/tasks/build.toml", 15 15 "./mise/tasks/check.toml", 16 + "./mise/tasks/run.toml", 16 17 ] 17 18 dir = "{{ config_root }}"
+12
mise/tasks/build.toml
··· 49 49 "if not exist .\\data\\redis mkdir .\\data\\redis", 50 50 "if not exist .\\data\\postgres mkdir .\\data\\postgres", 51 51 ] 52 + 53 + [clean-all] 54 + description = "Clean all build artifacts" 55 + run = [ 56 + "cargo clean", 57 + "rm -rf ./client/node_modules", 58 + "rm -rf ./client/build", 59 + "rm -rf ./client/build/dev/javascript/lumina_client/lumina_client.mjs", 60 + "rm -rf ./client/build/dev/javascript/lumina_client/lumina_client.ts", 61 + "rm -rf ./client/priv/static/lumina_client.min.mjs", 62 + "rm -rf ./client/priv/static/lumina_client.css", 63 + ]
+5
mise/tasks/check.toml
··· 12 12 hide = true 13 13 run = "gleam check" 14 14 dir = "./client/" 15 + 16 + [check-watch] 17 + tools.watchexec = "latest" 18 + description = "Run the server in development mode with file watching" 19 + run = "mise watch --restart -e rs,gleam,toml,css,ts,json --clear=clear check"
+16
mise/tasks/podman.toml
··· 94 94 "podman run -d --replace --name lumina-redis -p 6379:6379 -v ./data/redis:/data --pod lumina-sqlite-pod redis", 95 95 "podman run --name lumina-server-sqlite --pod lumina-sqlite-pod -e LUMINA_DB_TYPE=sqlite -e LUMINA_SQLITE_FILE=data/instance.sqlite -e LUMINA_SERVER_PORT=8085 -e LUMINA_SERVER_ADDR=0.0.0.0 -v ./data/:/app/data/:Z lumina-server:latest", 96 96 ] 97 + 98 + [development-run-redis] 99 + description = "Just runs the Podman image for a Redis server so that the development run can connect to it" 100 + run = "podman run --replace --name lumina-redis -p 6379:6379 -v ./data/redis:/data -d redis/redis-stack:7.2.0-v18" 101 + 102 + [development-run-watch-podman] 103 + tools.watchexec = "latest" 104 + description = "Run the server in development mode with file watching" 105 + run = "mise x -- watchexec --restart --stop-timeout=0 --shell=sh -e rs,gleam,toml,css,ts,json mise run pod-up-postgres-no-optimise" 106 + run_windows = "mise x -- watchexec --restart --stop-timeout=0 --shell=cmd -e rs,gleam,toml,css,ts,json mise run pod-up-postgres-no-optimise" 107 + 108 + [development-run-watch-podman-sqlite] 109 + tools.watchexec = "latest" 110 + description = "Run the server in development mode with file watching" 111 + run = "mise x -- watchexec --restart --stop-timeout=0 --shell=sh -e rs,gleam,toml,css,ts,json mise run pod-up-sqlite-no-optimise" 112 + run_windows = "mise x -- watchexec --restart --stop-timeout=0 --shell=cmd -e rs,gleam,toml,css,ts,json mise run pod-up-sqlite-no-optimise"
+19
mise/tasks/run.toml
··· 1 + [optimised-development-run] 2 + description = "Run the server in release mode for development" 3 + depends = "build-server-release" 4 + run = "../target/release/lumina-server" 5 + run_windows = "..\\target\\release\\lumina-server.exe" 6 + dir = "{{ config_root }}/data/" 7 + 8 + [development-run] 9 + description = "Run the server in development mode" 10 + depends = "build-server" 11 + run = ["../target/debug/lumina-server"] 12 + run_windows = "..\\target\\debug\\lumina-server.exe" 13 + dir = "{{config_root}}/data/" 14 + 15 + [development-run-watch] 16 + tools.watchexec = "latest" 17 + description = "Run the server in development mode with file watching" 18 + run = "watchexec --restart --stop-timeout=0 --shell=sh -e rs,gleam,toml,css,ts,json mise run development-run" 19 + run_windows = "watchexec --restart --stop-timeout=0 --shell=cmd -e rs,gleam,toml,css,ts,json mise run development-run"