mirror of
https://github.com/browseros-ai/BrowserOS.git
synced 2026-05-18 11:06:19 +00:00
* fix: dev scripts * feat: setup posthog mcp * feat: api auth UI * chore: remove agent command * feat: setup posthog connection * fix: better error handling * chore: refactor to use llm proxy * feat: auto update authenticate status for posthog * feat: integrate posthog to the app selector * feat: update biome * chore: update server restart * chore: update codegen process * feat: install klavis in server project * feat: update posthog icon * fix: updated review comment * feat: address code reviews
32 lines
643 B
YAML
32 lines
643 B
YAML
version: "0.5"
|
|
|
|
processes:
|
|
install:
|
|
command: bun install
|
|
availability:
|
|
restart: no
|
|
|
|
build-ext:
|
|
command: bun --cwd apps/controller-ext build
|
|
availability:
|
|
restart: no
|
|
depends_on:
|
|
install:
|
|
condition: process_completed_successfully
|
|
|
|
server:
|
|
command: bun --cwd apps/server start
|
|
availability:
|
|
restart: always
|
|
depends_on:
|
|
build-ext:
|
|
condition: process_completed_successfully
|
|
|
|
agent-codegen:
|
|
command: bun --cwd apps/agent codegen --watch
|
|
availability:
|
|
restart: always
|
|
depends_on:
|
|
install:
|
|
condition: process_completed_successfully
|