Some checks are pending
CI / build-check-test (push) Waiting to run
- bash-tool.ts: execute shell commands via tool-server HTTP API - browser-tool.ts: Playwright browser automation (navigate, click, type, screenshot) - tool-server.mjs: Node.js HTTP server for bash exec + Playwright control (port 7700) - Dockerfile + docker-compose.yml for containerised deployment - Register tools in agent toolchain (main.ts, index.ts) - Add dev:all script to run Vite + tool-server concurrently
16 lines
339 B
YAML
16 lines
339 B
YAML
services:
|
|
jae-web:
|
|
build: .
|
|
ports:
|
|
- "5173:5173"
|
|
- "7700:7700"
|
|
environment:
|
|
- OPENAI_API_KEY=${OPENAI_API_KEY}
|
|
- OPENAI_BASE_URL=${OPENAI_BASE_URL:-https://api.venice.ai/api/v1}
|
|
- TOOL_SERVER_PORT=7700
|
|
volumes:
|
|
- workspace:/workspace
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
workspace:
|