Rename Factory to Foundry

This commit is contained in:
Nathan Flurry 2026-03-10 22:01:39 -07:00
parent 0a8fda040b
commit 324de36577
256 changed files with 605 additions and 603 deletions

31
foundry/compose.mock.yaml Normal file
View file

@ -0,0 +1,31 @@
name: sandbox-agent-foundry-mock
services:
frontend:
build:
context: ..
dockerfile: foundry/docker/frontend.dev.Dockerfile
working_dir: /app
environment:
HOME: "/tmp"
FOUNDRY_FRONTEND_CLIENT_MODE: "mock"
ports:
- "4174:4173"
volumes:
- "..:/app"
- "./.sandbox-agent-foundry:/app/foundry/.sandbox-agent-foundry"
# Use Linux-native workspace dependencies inside the container instead of host node_modules.
- "sandbox-agent-foundry-mock_node_modules:/app/node_modules"
- "sandbox-agent-foundry-mock_client_node_modules:/app/foundry/packages/client/node_modules"
- "sandbox-agent-foundry-mock_frontend_errors_node_modules:/app/foundry/packages/frontend-errors/node_modules"
- "sandbox-agent-foundry-mock_frontend_node_modules:/app/foundry/packages/frontend/node_modules"
- "sandbox-agent-foundry-mock_shared_node_modules:/app/foundry/packages/shared/node_modules"
- "sandbox-agent-foundry-mock_pnpm_store:/tmp/.local/share/pnpm/store"
volumes:
sandbox-agent-foundry-mock_node_modules: {}
sandbox-agent-foundry-mock_client_node_modules: {}
sandbox-agent-foundry-mock_frontend_errors_node_modules: {}
sandbox-agent-foundry-mock_frontend_node_modules: {}
sandbox-agent-foundry-mock_shared_node_modules: {}
sandbox-agent-foundry-mock_pnpm_store: {}