mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-20 16:05:18 +00:00
Merge remote-tracking branch 'origin/full-docker-defaults' into async-action-fixes
# Conflicts: # foundry/CLAUDE.md # foundry/packages/backend/src/actors/task/workbench.ts # foundry/packages/frontend/src/components/dev-panel.tsx # foundry/packages/frontend/src/components/mock-layout.tsx # justfile
This commit is contained in:
commit
14d5413f8a
30 changed files with 521 additions and 413 deletions
28
justfile
28
justfile
|
|
@ -135,6 +135,34 @@ foundry-preview:
|
|||
mkdir -p foundry/.foundry/logs
|
||||
HF_DOCKER_UID="$(id -u)" HF_DOCKER_GID="$(id -g)" docker compose --env-file .env -f foundry/compose.preview.yaml up --build --force-recreate -d
|
||||
|
||||
[group('foundry')]
|
||||
foundry-frontend-dev host='127.0.0.1' port='4173' backend='http://127.0.0.1:7741/api/rivet':
|
||||
pnpm install
|
||||
VITE_HF_BACKEND_ENDPOINT="{{backend}}" pnpm --filter @sandbox-agent/foundry-frontend dev -- --host {{host}} --port {{port}}
|
||||
|
||||
[group('foundry')]
|
||||
foundry-dev-mock host='127.0.0.1' port='4174':
|
||||
pnpm install
|
||||
FOUNDRY_FRONTEND_CLIENT_MODE=mock pnpm --filter @sandbox-agent/foundry-frontend dev -- --host {{host}} --port {{port}}
|
||||
|
||||
[group('foundry')]
|
||||
foundry-mock:
|
||||
pnpm install
|
||||
mkdir -p foundry/.foundry/logs
|
||||
docker compose -f foundry/compose.mock.yaml up --build --force-recreate -d
|
||||
|
||||
[group('foundry')]
|
||||
foundry-mock-down:
|
||||
docker compose -f foundry/compose.mock.yaml down
|
||||
|
||||
[group('foundry')]
|
||||
foundry-mock-logs:
|
||||
docker compose -f foundry/compose.mock.yaml logs -f --tail=200
|
||||
|
||||
[group('foundry')]
|
||||
foundry-dev-turbo:
|
||||
pnpm exec turbo run dev --parallel --filter=@sandbox-agent/foundry-*
|
||||
|
||||
[group('foundry')]
|
||||
foundry-dev-down:
|
||||
docker compose --env-file .env -f foundry/compose.dev.yaml down
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue