Files
BrowserOS/process-compose.yaml
Dani Akash f4f92053f7 feat: enable posthog app connection support (#313)
* 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
2026-02-11 18:28:45 +05:30

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