- Deleted apps/web/src/utils/optimisticStoreUpdates.ts (unused file) - File was unused - no imports found in codebase - Mutations already use React Query's onMutate pattern - No TypeScript errors after deletion - Actions 4.4.1.2 and 4.4.1.3 complete
31 lines
817 B
Bash
31 lines
817 B
Bash
# Veza Backend API Environment Configuration
|
|
# Edit this file to configure your backend-api service
|
|
|
|
# Application
|
|
APP_ENV=production
|
|
APP_PORT=8080
|
|
LOG_LEVEL=INFO
|
|
LOG_DIR=/var/log/veza
|
|
|
|
# Database
|
|
DATABASE_URL=postgresql://veza:password@10.10.10.10:5432/veza?sslmode=disable
|
|
|
|
# Redis
|
|
REDIS_URL=redis://10.10.10.10:6379
|
|
REDIS_ENABLE=true
|
|
|
|
# RabbitMQ (disabled - not deployed in infra)
|
|
RABBITMQ_URL=amqp://veza:password@10.10.10.10:5672/%2f
|
|
RABBITMQ_ENABLE=false
|
|
|
|
# Security
|
|
JWT_SECRET=your-super-secret-jwt-key-change-this-in-production-min-32-chars
|
|
CORS_ALLOWED_ORIGINS=http://10.10.10.1,http://10.10.10.6,https://10.10.10.6,http://localhost
|
|
|
|
# Services
|
|
STREAM_SERVER_URL=http://10.10.10.4:3002
|
|
CHAT_SERVER_URL=http://10.10.10.3:8081
|
|
|
|
# ClamAV (disabled in Incus by default)
|
|
ENABLE_CLAMAV=false
|
|
CLAMAV_REQUIRED=false
|