mirror of
https://github.com/different-ai/openwork
synced 2026-04-25 17:15:34 +02:00
Run Den controller, web, and worker proxy through a root dev:den-local workflow backed by Turbo and auto-managed local MySQL. Restore the background agents tab to show real sandboxes, add manual sandbox creation, stop auto-launching sandboxes on signup, and move Billing lower in the sidebar. Co-authored-by: src-opn <src-opn@users.noreply.github.com>
33 lines
649 B
JSON
33 lines
649 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalEnv": [
|
|
"OPENWORK_DEV_MODE",
|
|
"DATABASE_URL",
|
|
"BETTER_AUTH_SECRET",
|
|
"BETTER_AUTH_URL",
|
|
"DEN_BETTER_AUTH_TRUSTED_ORIGINS",
|
|
"CORS_ORIGINS",
|
|
"DEN_CONTROLLER_PORT",
|
|
"DEN_WORKER_PROXY_PORT",
|
|
"DEN_WEB_PORT",
|
|
"DEN_API_BASE",
|
|
"DEN_AUTH_ORIGIN",
|
|
"DEN_AUTH_FALLBACK_BASE",
|
|
"PROVISIONER_MODE"
|
|
],
|
|
"tasks": {
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"dev:local": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**", ".next/**"]
|
|
}
|
|
}
|
|
}
|