phonograph/mise.toml

23 lines
560 B
TOML
Raw Normal View History

2025-07-08 15:17:21 -07:00
[tools]
2025-07-08 16:54:51 -07:00
deno = "latest"
2025-07-08 15:17:21 -07:00
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"
2025-07-08 16:54:51 -07:00
description = "Run the server. For development: `mise watch --restart serve`."
sources = ["**/*.rs", "**/*.html"]
2025-07-08 15:17:21 -07:00
[tasks.vite]
run = "deno task build"
dir = "./components"
2025-07-08 16:54:51 -07:00
sources = ["**/*.ts"]
2025-07-08 15:17:21 -07:00
[env]
RUST_LOG = "debug"
RUST_BACKTRACE = "1"