| 1234567891011121314151617181920212223242526 |
- # Copy to /redant/web/homelegance-chatbot/.env.production
- # Fill in all values before starting the service
- NODE_ENV=production
- PORT=3000
- # PostgreSQL — chatbot's own database
- DATABASE_URL=postgresql://chatbot_user:CHANGE_ME@localhost:5432/homelegance_chat
- # JWT session signing key (generate: openssl rand -hex 32)
- JWT_SECRET=CHANGE_ME
- # Claude API
- ANTHROPIC_API_KEY=sk-ant-CHANGE_ME
- # ERP FastAPI bridge (internal, not exposed externally)
- ERP_API_URL=http://127.0.0.1:8080
- ERP_API_KEY=CHANGE_ME
- # SSO — shared secret with Dealer Portal for JWT verification
- DEALER_PORTAL_SSO_SECRET=CHANGE_ME
- # Optional: Manus OAuth (leave blank if not used)
- VITE_APP_ID=
- OAUTH_SERVER_URL=
- OWNER_OPEN_ID=
|