todo/justfile
2025-06-20 13:59:28 +02:00

22 lines
299 B
Makefile

set dotenv-load
alias b := build
build:
cargo build
alias r := run
run:
cargo run
db-setup:
diesel setup
db-update desc:
diesel migration generate --diff-schema {{ desc }}
db-migrate:
diesel migration run
diesel migration redo
db-inspect:
lazysql $DATABASE_URL