Skip to content

Commit 8fc110d

Browse files
committed
chore: add common dev commands
1 parent 70307c9 commit 8fc110d

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

justfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11
set dotenv-load
22

3+
dev:
4+
cargo run
5+
6+
up:
7+
docker compose up redis postgres -d
8+
9+
down:
10+
docker compose down
11+
12+
test:
13+
cargo test -- --test-threads=1
14+
315
migrate:
416
sqlx migrate run --source migrations --database-url "$DATABASE_URL"

0 commit comments

Comments
 (0)