this repo has no description
0
fork

Configure Feed

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

Add descriptions

+11 -1
+1 -1
README.MD
··· 33 33 34 34 ```sh 35 35 mise install # Installs mise deps 36 - mise watch --restart -e rs,gleam,toml,css,ts,json development-run # Watches every important file and auto restarts build process on changes. Really nice! 36 + mise run development-watch # Watches every important file and auto restarts build process on changes. Really nice! 37 37 ``` 38 38 I might just specify it a bit further sometime in the future. 39 39
+10
mise.toml
··· 13 13 bun = true 14 14 15 15 [tasks.optimised-development-run] 16 + description = "Run the server in release mode for development" 16 17 depends = "build-client" 17 18 run = "cargo run --release" 18 19 dir = "{{cwd}}" 19 20 20 21 [tasks.format] 22 + description = "Format the codebase" 21 23 depends = ["format-server", "format-client", "format-metafiles"] 22 24 run = [] 23 25 ··· 36 38 run = ["biome format --write --vcs-enabled=true", "taplo fmt"] 37 39 38 40 [tasks.development-run] 41 + description = "Run the server in development mode" 39 42 depends = "build-client" 40 43 run = "cargo run" 41 44 dir = "{{cwd}}" 42 45 46 + [tasks.development-watch] 47 + description = "Run the server in development mode with file watching" 48 + run = "mise watch --restart -e rs,gleam,toml,css,ts,json development-run" 49 + 43 50 [tasks.build-client] 51 + description = "Build the client-side of Lumina and it's styles" 44 52 run = [ 45 53 "gleam build --target javascript", 46 54 """ ··· 57 65 dir = "./client/" 58 66 59 67 [tasks.build-styles] 68 + description = "Build the styles for Lumina" 60 69 run = [ 61 70 "bun i", 62 71 "bun x @tailwindcss/cli -i ./app.css -o ./priv/static/lumina_client.css", ··· 64 73 dir = "./client/" 65 74 66 75 [tasks.build-server] 76 + description = "Build the server-side of Lumina" 67 77 depends = ["build-client"] 68 78 run = ["cargo build"]