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>
30 lines
1.0 KiB
Plaintext
30 lines
1.0 KiB
Plaintext
PORT=8790
|
|
CORS_ORIGINS=http://localhost:3000,http://localhost:3001
|
|
DATABASE_URL=mysql://root:password@127.0.0.1:3306/den
|
|
BETTER_AUTH_SECRET=replace-with-32-plus-character-secret
|
|
# Required dedicated DB encryption key for encrypted columns. Minimum 32 chars.
|
|
# Generate one with: openssl rand -base64 128
|
|
DEN_DB_ENCRYPTION_KEY=
|
|
BETTER_AUTH_URL=http://localhost:8790
|
|
DEN_BETTER_AUTH_TRUSTED_ORIGINS=http://localhost:3000,http://localhost:3001
|
|
LOOPS_TRANSACTIONAL_ID_DEN_VERIFY_EMAIL=replace-with-loops-template-id
|
|
LOOPS_TRANSACTIONAL_ID_DEN_ORG_INVITE_EMAIL=replace-with-loops-template-id
|
|
PROVISIONER_MODE=daytona
|
|
WORKER_URL_TEMPLATE=https://workers.local/{workerId}
|
|
WORKER_ACTIVITY_BASE_URL=http://localhost:8790
|
|
RENDER_API_KEY=
|
|
RENDER_OWNER_ID=
|
|
RENDER_WORKER_PUBLIC_DOMAIN_SUFFIX=
|
|
VERCEL_TOKEN=
|
|
VERCEL_DNS_DOMAIN=
|
|
POLAR_FEATURE_GATE_ENABLED=false
|
|
POLAR_API_BASE=
|
|
POLAR_ACCESS_TOKEN=
|
|
POLAR_PRODUCT_ID=
|
|
POLAR_BENEFIT_ID=
|
|
POLAR_SUCCESS_URL=
|
|
POLAR_RETURN_URL=
|
|
DAYTONA_API_KEY=
|
|
DAYTONA_API_URL=https://app.daytona.io/api
|
|
OPENWORK_DEV_MODE=1
|