Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docs-site/docs/user-journeys/developers/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,21 @@ JWT_SECRET_KEY=your_jwt_secret_key

# Monitoring
SENTRY_DSN=your_sentry_dsn

# Podcast demo-mode switch (temporary testing flag)
# Enable demo-only podcast behavior:
PODCAST_ONLY_DEMO_MODE=true
# Full restore to normal behavior:
# PODCAST_ONLY_DEMO_MODE=false
# (or leave PODCAST_ONLY_DEMO_MODE unset)
```

### Release Checklist (Demo-Mode Safety)

Before finalizing a release after demo testing, confirm:

- [ ] `PODCAST_ONLY_DEMO_MODE` is unset (or explicitly `false`) in production deployment config.

**Security Best Practices**
- **Use Environment Variables**: Never hardcode sensitive data
- **Rotate Keys Regularly**: Change API keys periodically
Expand Down
Loading