Guide for creating and using secrets in Fusebase Apps app backends. Use when: (1) An app backend needs API keys, passwords, or other sensitive config, (2) Creating secrets via the CLI, (3) Accessing secrets at runtime in backend code, (4) Deciding what should be a secret vs. a regular env var.
Scanned 9/13/2026
Install to Claude Code
npx -y skills add fusebase-dev/fusebase-flow --skill app-secrets --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of App Secrets?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/fusebase-dev-app-secrets)More formats (shields.io, HTML) on the badges page.
---
name: app-secrets
description: "Guide for creating and using secrets in Fusebase Apps app backends. Use when: (1) An app backend needs API keys, passwords, or other sensitive config, (2) Creating secrets via the CLI, (3) Accessing secrets at runtime in backend code, (4) Deciding what should be a secret vs. a regular env var."
---
# App Secrets
Secrets are encrypted key-value pairs stored in Fusebase and injected into the app backend at runtime as environment variables. Use them for sensitive config that must not be committed to source control (API keys, passwords, tokens, etc.).
**Secrets are only available in the app server** (`backend/` directory). They are NOT accessible in the browser/SPA — never try to read secrets from the frontend.
## Creating Secrets
Use the CLI to register secret keys (values are set on the FuseBase website):
```bash
fusebase secret create --app <appPath> --secret "KEY:description" [--secret ...]
```
- `appPath` — the app's `apps[].path` from `fusebase.json`; `--feature` is accepted as a deprecated alias for `--app`
- Each `--secret` is `KEY` or `KEY:human-readable description`
- Pass multiple `--secret` flags to create several secrets at once
- This command only edits `fusebase.json` (it makes no network call and prints no URL). The keys are registered on the platform — with empty values — on the next `fusebase deploy` / `fusebase dev start`, and *that* command prints the URL where you fill in the actual values
**Examples:**
```bash
# Single secret
fusebase secret create --app apps/my-app --secret "OPENAI_API_KEY:OpenAI API key"
# Multiple secrets at once
fusebase secret create --app apps/my-app \
--secret "STRIPE_SECRET_KEY:Stripe secret key" \
--secret "DB_PASSWORD:Database connection password" \
--secret "WEBHOOK_SECRET:Webhook signing secret"
```
Then run `fusebase deploy` (or `fusebase dev start`) to register the keys on the platform. That run prints the secrets URL:
```
Registered 3 new secret key(s) for apps/my-app: STRIPE_SECRET_KEY, DB_PASSWORD, WEBHOOK_SECRET
Set their values in the FuseBase UI:
https://{org-domain}/dashboard/{orgId}/apps/features/{appId}/secrets
```
Open that URL and fill in the secret values. The URL is printed only when new keys are registered — if the keys already exist on the platform, nothing is printed and you can reach the same page from the app's Secrets tab in the FuseBase UI.
## Accessing Secrets at Runtime
Secrets are injected as environment variables into the app backend process. Read them via `process.env`:
```typescript
// backend/src/index.ts or any backend file
const apiKey = process.env.OPENAI_API_KEY
if (!apiKey) {
throw new Error('OPENAI_API_KEY is not set')
}
```
Validate required secrets at backend startup so the backend fails fast with a clear error rather than failing silently on the first request:
```typescript
// backend/src/config.ts
function requireEnv(key: string): string {
const value = process.env[key]
if (!value) throw new Error(`Missing required environment variable: ${key}`)
return value
}
export const config = {
openaiApiKey: requireEnv('OPENAI_API_KEY'),
stripeSecretKey: requireEnv('STRIPE_SECRET_KEY'),
}
```
## Local Development
`fusebase dev start` **downloads secrets from Fusebase** and injects them into the backend process as environment variables — **the exact same secrets used in production**. There is **no need** for a `.env` file or the `dotenv` package.
- ❌ Do NOT create a `backend/.env` file for secrets
- ❌ Do NOT add `dotenv` as a dependency
- ❌ Do NOT use `import 'dotenv/config'` in backend code
- ✅ Use `fusebase secret create` to declare secrets, set values in the FuseBase UI (URL printed by `fusebase deploy` / `fusebase dev start`), and they will be available via `process.env` in both dev and production
## Runtime Persistence
Secrets are **read-only** at runtime — the backend cannot update secret values programmatically. They are set via the CLI or the Fusebase web UI.
Secrets (env vars) are best for **shared, deploy-time credentials** (API keys, service-account tokens). They are **not suitable** for per-user or dynamically obtained tokens because they cannot be written at runtime and the backend is stateless (no filesystem, no in-memory persistence across restarts).
**For per-user credentials obtained at runtime** (e.g. OAuth refresh tokens from a callback), use **httpOnly cookies** instead — see skill **app-backend**, "Stateless Backend" section. The cookie is sent by the browser on every request; the backend reads it and stays stateless. The env-var secret can serve as a fallback.
## Checklist
- [ ] `fusebase secret create` run with all required keys and descriptions
- [ ] Secret values filled in via the app secret manager on the FuseBase website
- [ ] Secrets validated at backend startup (fail fast with a clear error)
- [ ] No `backend/.env` file — secrets are injected by `fusebase dev start` automatically
- [ ] No `dotenv` dependency in backend code
- [ ] No secrets referenced in SPA/browser codeIs this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!