-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
25 lines (21 loc) · 582 Bytes
/
Copy pathjustfile
File metadata and controls
25 lines (21 loc) · 582 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
dev-docker-start:
docker compose -f docker-compose.dev.yml up -d
dev-docker-stop:
docker compose -f docker-compose.dev.yml stop
dev-be-start:
cargo run
dev-fe-start:
cd frontend; VITE_ALLOW_ADD=true pnpm run dev
prod-start:
docker compose -f docker-compose.prod.yml up -d
prod-stop:
docker compose -f docker-compose.prod.yml stop
prod-build:
docker compose -f docker-compose.prod.yml build
dev:
cd frontend; pnpm install
just dev-docker-start
just dev-be-start & just dev-fe-start & wait
start: dev
gen-openapi:
wget -O openapi.json http://localhost:5173/api/openapi