Fix: Remove hardcoded OpenAI API key, use environment variable

- Replace hardcoded API key with environment variable
- Add OPENAI_API_KEY to .env.example for documentation
- Prevents secret exposure in version control

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-07-08 12:32:42 -06:00
parent 997c129383
commit 05acead999

View File

@@ -23,3 +23,6 @@ RESEND_API_KEY=re_your-resend-api-key-here
# Error Monitoring (Sentry) # Error Monitoring (Sentry)
SENTRY_DSN=https://your-sentry-dsn-here@sentry.io/project-id SENTRY_DSN=https://your-sentry-dsn-here@sentry.io/project-id
SENTRY_RELEASE=1.0.0 SENTRY_RELEASE=1.0.0
# AI Features (OpenAI)
OPENAI_API_KEY=sk-your-openai-api-key-here