this repo has no description
1default:
2 @just --list
3
4run:
5 cargo run
6
7run-release:
8 cargo run --release
9
10build:
11 cargo build
12
13build-release:
14 cargo build --release
15
16check:
17 cargo check
18
19clippy:
20 cargo clippy -- -D warnings
21
22fmt:
23 cargo fmt
24
25fmt-check:
26 cargo fmt -- --check
27
28lint: fmt-check clippy
29
30test:
31 cargo test
32
33test-verbose:
34 cargo test -- --nocapture
35
36test-repo:
37 cargo test --test repo
38
39test-lifecycle:
40 cargo test --test lifecycle
41
42test-proxy:
43 cargo test --test proxy
44
45test-sync:
46 cargo test --test sync
47
48test-server:
49 cargo test --test server
50
51test-identity:
52 cargo test --test identity
53
54test-auth:
55 cargo test --test auth
56
57clean:
58 cargo clean
59
60doc:
61 cargo doc --open
62
63db-create:
64 DATABASE_URL="postgres://postgres:postgres@localhost:5432/pds" sqlx database create
65
66db-migrate:
67 DATABASE_URL="postgres://postgres:postgres@localhost:5432/pds" sqlx migrate run
68
69db-reset:
70 DATABASE_URL="postgres://postgres:postgres@localhost:5432/pds" sqlx database drop -y
71 DATABASE_URL="postgres://postgres:postgres@localhost:5432/pds" sqlx database create
72 DATABASE_URL="postgres://postgres:postgres@localhost:5432/pds" sqlx migrate run
73
74docker-up:
75 docker compose up -d
76
77docker-down:
78 docker compose down
79
80docker-logs:
81 docker compose logs -f
82
83docker-build:
84 docker compose build