forked from rivet-dev/rivet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
19 lines (15 loc) · 704 Bytes
/
justfile
File metadata and controls
19 lines (15 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[group('release')]
release *ARGS:
./scripts/release/main.ts --phase setup-local {{ ARGS }}
[group('docker')]
docker-build:
docker build -f engine/docker/universal/Dockerfile --target engine-full -t rivetkit/engine:local --platform linux/x86_64 .
[group('docker')]
docker-build-frontend:
docker build -f engine/docker/universal/Dockerfile --target engine-full -t rivetkit/engine:local --platform linux/x86_64 --build-arg BUILD_FRONTEND=true .
[group('docker')]
docker-run:
docker run -p 6420:6420 -e RIVET__AUTH__ADMIN_TOKEN=dev -e RUST_LOG=debug rivetkit/engine:local
[group('docker')]
docker-stop:
docker run -p 6420:6420 -e RIVET__AUTH__ADMIN_TOKEN=dev -e RUST_LOG=debug rivetkit/engine:local