todo/justfile

23 lines
299 B
Makefile
Raw Normal View History

2025-06-20 13:03:55 +02:00
set dotenv-load
2025-06-17 13:59:05 +02:00
alias b := build
build:
cargo build
alias r := run
run:
cargo run
2025-06-20 13:03:55 +02:00
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