-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.example.env
More file actions
51 lines (41 loc) · 1.72 KB
/
.example.env
File metadata and controls
51 lines (41 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
POSTGRES_ADMIN_PASSWORD=super_secure_admin_password_123
# Orchestrator Service Database Credentials
ORCHESTRATOR_DB_USER=orchestrator_user
ORCHESTRATOR_DB_PASS=orchestrator_secure_pass_456
ORCHESTRATOR_RESEND_API_KEY=orchestrator_resend_api_key_789
# Video Processing Service Database Credentials
VPS_DB_USER=vps_user
VPS_DB_PASS=vps_secure_pass_789
# Video Processing Service Database Credentials
PORT=8080
APP_ENV=local
GIN_MODE=release
SENTIMENTATOR_VPS_DB_HOST=postgres
SENTIMENTATOR_VPS_DB_PORT=5432
SENTIMENTATOR_VPS_DB_DATABASE=video_processing_db
SENTIMENTATOR_VPS_DB_SCHEMA=public
SENTIMENTATOR_VPS_DB_USERNAME=vps_user
SENTIMENTATOR_VPS_DB_PASSWORD=vps_secure_pass_789
DLQ_ENCRYPTION_KEY=6c1ab87e1eff8a7d1119dadb39c6076250fefdae0dda9665c3c5ada72d62445b
SENTIMENTATOR_GORM_LOG_LEVEL=
OPENAI_API_KEY=secret_openai_api_key_ABC123XYZ456
# Set to 'true' to use mock Lorem Ipsum transcripts instead of OpenAI API
WHISPER_MOCK_MODE=false
# Local Whisper Server for Development (reduces API costs)
# Set to 'true' to use local faster-whisper container instead of OpenAI API
# Use with: docker compose --profile local-whisper-cpu up (or local-whisper-gpu for NVIDIA)
WHISPER_LOCAL_MODE=true
WHISPER_LOCAL_ENDPOINT=http://whisper-local:8000
MAX_CONCURRENT_RABBIT_PROCESSING_WORKERS=5
# Admin token for web debug interface access
WEB_ADMIN_TOKEN=admin_token_secure_123
# RabbitMQ credentials
RABBITMQ_USER=sentimentator_event_bus
RABBITMQ_PASSWORD=rabbitmq_secure_pass
RABBITMQ_VHOST=/ #appvhost
# Broker URL used by application containers (inside Docker network)
AMQP_URL=amqp://sentimentator_event_bus:rabbitmq_secure_pass@rabbitmq:5672/ #appvhost
#Frontend credentials
VITE_BACKEND_API=orchestrator
VITE_DEMO_MODE=false
VITE_REGISTER_ENABLED=true