chore: move from okfile to justfile

This commit is contained in:
2026-01-09 17:41:18 -08:00
parent 0d8220e147
commit 69652743b5
3 changed files with 21 additions and 3 deletions

3
.ok
View File

@@ -1,3 +0,0 @@
db.start: docker compose up -d
db.stop: docker compose down
db.reset: docker compose down -v --remove-orphans

9
db.just Normal file
View File

@@ -0,0 +1,9 @@
_default:
just --list db
start:
docker compose up -d
stop:
docker compose down
reset:
docker compose down -v --remove-orphans

12
mod.just Normal file
View File

@@ -0,0 +1,12 @@
mod db
_default:
just --list api
migrate:
sqlx migrate run
build:
cargo build --release
run:
cargo run