-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathenv.example
More file actions
81 lines (64 loc) · 2.56 KB
/
env.example
File metadata and controls
81 lines (64 loc) · 2.56 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# ==========================================
# Voice Summary - Environment Configuration
# ==========================================
# Copy this file to .env and fill in your actual values
# ==========================================
# Database Configuration
# ==========================================
# PostgreSQL connection string
# Format: postgresql://username:password@host:port/database
DATABASE_URL=postgresql://username:password@localhost:5432/voicesummary
# ==========================================
# AWS S3 Configuration (Required)
# ==========================================
# Your AWS access key for S3 operations
AWS_ACCESS_KEY_ID=your_access_key_here
# Your AWS secret access key for S3 operations
AWS_SECRET_ACCESS_KEY=your_secret_key_here
# AWS region where your S3 bucket is located
AWS_REGION=us-east-1
# Name of your S3 bucket for storing audio files
S3_BUCKET_NAME=your-audio-bucket-name
# ==========================================
# Bolna Platform Integration (Optional)
# ==========================================
# Only needed if you're using the Bolna platform integration
# BOLNA_API_KEY=your_bolna_api_key_here
# BOLNA_BASE_URL=https://api.bolna.com
# ==========================================
# OpenAI Configuration (Required for Agent Analysis)
# ==========================================
# Your OpenAI API key for agent performance analysis
OPENAI_API_KEY=your_openai_api_key_here
# OpenAI model to use for analysis (default: gpt-4)
OPENAI_MODEL=gpt-4
# ==========================================
# Application Configuration
# ==========================================
# Host to bind the FastAPI server to
APP_HOST=0.0.0.0
# Port for the FastAPI server
APP_PORT=8000
# Enable debug mode (set to false in production)
DEBUG=true
# Log level (debug, info, warning, error)
LOG_LEVEL=info
# ==========================================
# Frontend Configuration (Optional)
# ==========================================
# Next.js base URL for API calls
NEXT_PUBLIC_API_URL=http://localhost:8000
# ==========================================
# Audio Processing Configuration (Optional)
# ==========================================
# Pause sensitivity for voice analysis (low, normal, high)
PAUSE_SENSITIVITY=normal
# Maximum audio file size in MB
MAX_AUDIO_FILE_SIZE=100
# ==========================================
# Security Configuration (Optional)
# ==========================================
# Secret key for JWT tokens (generate a secure random string)
SECRET_KEY=your-secret-key-here
# CORS origins (comma-separated)
CORS_ORIGINS=http://localhost:3000,http://localhost:8000