-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
62 lines (52 loc) · 1.67 KB
/
.env.example
File metadata and controls
62 lines (52 loc) · 1.67 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
# ==================================
# Django Configuration
# ==================================
SECRET_KEY=your-secret-key-here-change-in-production
DEBUG=False
ALLOWED_HOSTS=localhost,127.0.0.1,backend
# ==================================
# Database Configuration
# ==================================
DB_NAME=hardword
DB_USER=hardword
DB_PASSWORD=change-me-in-production
DB_HOST=db
DB_PORT=5432
# ==================================
# Redis Configuration
# ==================================
REDIS_PASSWORD=change-me-in-production
# ==================================
# Groq API Configuration
# ==================================
GROQ_API_KEY=your-groq-api-key-here
# ==================================
# Whisper Configuration
# ==================================
WHISPER_MODEL=base
# ==================================
# Admin Configuration
# ==================================
ADMIN_PASSWORD=change-me-in-production
# ==================================
# Frontend Configuration
# ==================================
REACT_APP_API_URL=http://localhost/api
# ==================================
# File Upload Configuration
# ==================================
MAX_UPLOAD_SIZE=104857600 # 100MB in bytes
# ==================================
# CORS Configuration
# ==================================
CORS_ALLOWED_ORIGINS=http://localhost,http://localhost:80,http://localhost:3000
# ==================================
# Docker Configuration
# ==================================
# PostgreSQL
POSTGRES_DB=${DB_NAME}
POSTGRES_USER=${DB_USER}
POSTGRES_PASSWORD=${DB_PASSWORD}
# Celery
CELERY_BROKER_URL=redis://:${REDIS_PASSWORD}@redis:6379/0
CELERY_RESULT_BACKEND=redis://:${REDIS_PASSWORD}@redis:6379/0