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>
15 lines
455 B
Plaintext
15 lines
455 B
Plaintext
# MySQL mode: if DATABASE_URL is set, den-db uses mysql/mysql2.
|
|
DATABASE_URL=
|
|
|
|
# Required dedicated DB encryption key for encrypted columns. Minimum 32 chars.
|
|
# Generate one with: openssl rand -base64 128
|
|
DEN_DB_ENCRYPTION_KEY=
|
|
|
|
# PlanetScale mode: used when DATABASE_URL is not set.
|
|
DATABASE_HOST=
|
|
DATABASE_USERNAME=
|
|
DATABASE_PASSWORD=
|
|
|
|
# Optional explicit env file path for Drizzle commands.
|
|
# OPENWORK_DEN_DB_ENV_PATH=/absolute/path/to/.env.production
|