phonograph/mise.toml
2025-11-19 09:23:16 +00:00

35 lines
812 B
TOML

[tools]
deno = "latest"
rebar = "latest"
rust = { version = "nightly", components = "rust-analyzer,clippy,rustc-codegen-cranelift-preview" }
watchexec = "latest"
"github:sass/dart-sass" = "1.89.2"
[tasks.dev-services]
run = "docker compose up"
dir = "./dev-services"
[tasks.server]
run = "cargo run serve"
description = "Run the server. For development: `mise watch --restart serve`."
sources = ["**/*.rs", "**/*.html"]
[tasks.build-svelte]
run = "deno run -A npm:vite build"
dir = "./svelte"
sources = ["**/*.svelte.ts", "**/*.svelte"]
[tasks.build-css]
run = "sass sass/:css_dist/"
sources = ["**/*.scss"]
[tasks.docker-services]
dir = "./dev-services"
run = "docker compose up"
[tasks.pg-container]
run = "sh ./dev-services/run-pg-with-apple-container.sh"
[env]
RUST_LOG = "debug"
RUST_BACKTRACE = "1"