Configure access to model providers and external services by adding API credentials to your environment.
Weam AI_OPEN_AI_KEY=sk-your-openai-api-key-here OPEN_AI_MODAL=gpt-4 OPEN_AI_API_URL=https://api.openai.com
SLACK_CLIENT_ID=your-slack-client-id SLACK_CLIENT_SECRET=your-slack-client-secret NEXT_PUBLIC_SLACK_CLIENT_ID=your-slack-client-id NEXT_PUBLIC_SLACK_CLIENT_SECRET=your-slack-client-secret
Configure SMTP for Notifications
EMAIL_PROVIDER=SMTP SMTP_SERVER=smtp.gmail.com SMTP_PORT=587 SMTP_USER=your-email@domain.com SMTP_PASSWORD=your-app-specific-password SENDER_EMAIL=noreply@yourdomain.com SUPPORT_EMAIL=support@yourdomain.com
SMTP_PASSWORD
DataForSEO Integration
SEO_USER_ID=your-seo-tool-email SEO_PASSWORD=your-seo-tool-password
Generate Required Security Keys
import secrets print("JWT_SECRET =", secrets.token_urlsafe(64)) print("JWT_REFRESH_SECRET =", secrets.token_urlsafe(64)) print("SECURITY_KEY =", secrets.token_urlsafe(16)) print("CSRF_TOKEN_SECRET =", secrets.token_urlsafe(32))
openssl rand -hex 32