veza/config/incus/env/backend-api.env
senke f0ba7de543 state-ownership: delete unused optimisticStoreUpdates.ts file
- 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
2026-01-15 19:26:53 +01:00

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