Wan2.1/wan-pwa/apps/api/.env.example
Claude f21ab74e38
chore: add configuration files for monorepo setup
- Add root package.json and turbo.json
- Add Next.js config files
- Add FastAPI environment example
- Add PWA manifest
- Add ESLint and Prettier config

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-24 14:19:02 +00:00

19 lines
410 B
Plaintext

# Supabase
SUPABASE_URL=https://xxxxx.supabase.co
SUPABASE_SERVICE_ROLE_KEY=eyJhbGci...
# Replicate
REPLICATE_API_TOKEN=r8_xxxxx
# API Configuration
ALLOWED_ORIGINS=http://localhost:3000
PORT=8000
ENV=development
# Redis (optional for queue)
REDIS_URL=redis://localhost:6379
# Celery (optional for background tasks)
CELERY_BROKER_URL=redis://localhost:6379/0
CELERY_RESULT_BACKEND=redis://localhost:6379/0