AIGC
ContentProducer
ContentPropagator
Label
ProduceID
PropagateID
ReservedCode1
ReservedCode2
Minimax Agent AI
Minimax Agent AI
AIGC
00000000000000000000000000000000
00000000000000000000000000000000
304502201abae0112f7dc5a5f3df2e1ea6b96c673cbc00165027eed91ab95994c19599d3022100cb16b267fe253e8c041916b4746a72640be64d59cff9deec41263bab44d0c194
30460221008baffb51478649b9f6be4c8ab854de3db4f4da452df3f492dd9c7d3f4c0f1f10022100d4e2d546c2e9286146f2a4506b04c3461db15d35c364444c7734ae6d7e61c49e
🔑 Complete API Keys Setup Guide
1. Database & Storage (Required)
Neon Postgres : Database connection
Upstash Redis : Cache and queue management
2. LLM Providers (Required - at least one)
OpenRouter : Primary LLM provider
Cloudflare Gateway : Secondary LLM provider
AWS Bedrock : Fallback LLM provider
JWT Secret : For token signing
Encryption Key : For data encryption
Admin API Key : For administrative operations
# Generate JWT Secret
JWT_SECRET=$( openssl rand -base64 32)
# Generate Encryption Key
ENCRYPTION_KEY=$( openssl rand -hex 16)
# Generate Admin API Key
ADMIN_API_KEY=$( openssl rand -base64 24)
echo " JWT_SECRET=$JWT_SECRET "
echo " ENCRYPTION_KEY=$ENCRYPTION_KEY "
echo " ADMIN_API_KEY=$ADMIN_API_KEY "
# Copy environment template
cp config/env.example .env
# Edit with your values
nano .env
# Run validation script
./scripts/validate_secrets.sh
See individual guide files for step-by-step instructions:
OPENROUTER.md - OpenRouter API setup
CLOUDFLARE.md - Cloudflare Gateway setup
DATABASE.md - Database configuration
SECURITY.md - Security key generation
Before proceeding:
For detailed instructions, see QUICK_START_GUIDE.md.