mirror of
https://github.com/different-ai/openwork
synced 2026-04-25 17:15:34 +02:00
* feat(den): add org-managed llm provider library Let Den admins curate shared providers and models with encrypted credentials, then let the app connect through the existing add-provider flow. This keeps org-wide model access consistent without requiring per-user OAuth setup. * docs(den): prefer longer db encryption keys * fix(den): pass db encryption key through local dev --------- Co-authored-by: src-opn <src-opn@users.noreply.github.com>
35 lines
698 B
JSON
35 lines
698 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalEnv": [
|
|
"OPENWORK_DEV_MODE",
|
|
"DATABASE_URL",
|
|
"DEN_DB_ENCRYPTION_KEY",
|
|
"BETTER_AUTH_SECRET",
|
|
"BETTER_AUTH_URL",
|
|
"DEN_BETTER_AUTH_TRUSTED_ORIGINS",
|
|
"CORS_ORIGINS",
|
|
"DEN_API_PORT",
|
|
"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/**"]
|
|
}
|
|
}
|
|
}
|