phonograph/mise.toml
2025-07-15 20:04:06 -07:00

22 lines
560 B
TOML

[tools]
deno = "latest"
jujutsu = "latest"
rust = { version = "1.88.0", components = "rust-analyzer,clippy" }
watchexec = "latest"
[tasks.postgres]
run = "docker run --rm -it -e POSTGRES_PASSWORD=guest -v './pgdata:/var/lib/postgresql/data' -p 127.0.0.1:5432:5432 postgres:17"
[tasks.server]
run = "cargo run serve"
description = "Run the server. For development: `mise watch --restart serve`."
sources = ["**/*.rs", "**/*.html"]
[tasks.vite]
run = "deno task build"
dir = "./components"
sources = ["**/*.ts"]
[env]
RUST_LOG = "debug"
RUST_BACKTRACE = "1"