forked from CapSoftware/Cap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.coolify.env.example
More file actions
76 lines (56 loc) · 1.7 KB
/
docker-compose.coolify.env.example
File metadata and controls
76 lines (56 loc) · 1.7 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
# Cap Self-Hosting Environment Variables for Coolify
# Copy this file and fill in the values
# ===================
# REQUIRED VARIABLES
# ===================
# Public URL where Cap will be accessible (e.g., https://cap.yourdomain.com)
WEB_URL=https://cap.yourdomain.com
# 32-byte hex string for encrypting sensitive data
# Generate with: openssl rand -hex 32
DATABASE_ENCRYPTION_KEY=
# 32-byte secret for NextAuth sessions
# Generate with: openssl rand -hex 32
NEXTAUTH_SECRET=
# Secret for media server webhook authentication
# Generate with: openssl rand -hex 32
MEDIA_SERVER_WEBHOOK_SECRET=
# ===================
# DATABASE
# ===================
# MySQL password for the 'cap' user
MYSQL_PASSWORD=your-secure-mysql-password
# MySQL root password
MYSQL_ROOT_PASSWORD=your-secure-root-password
# ===================
# S3 / MinIO STORAGE
# ===================
# MinIO admin credentials
MINIO_ROOT_USER=capadmin
MINIO_ROOT_PASSWORD=your-secure-minio-password
# S3 bucket name
S3_BUCKET=cap
# Public URL for S3 access (should be accessible from the internet for video playback)
# For Coolify, this is typically your minio service URL
S3_PUBLIC_ENDPOINT=https://s3.yourdomain.com
# ===================
# EMAIL (OPTIONAL)
# ===================
# Without these, login links will appear in container logs
# Resend API key for sending emails
RESEND_API_KEY=
# Domain configured in Resend
RESEND_FROM_DOMAIN=
# ===================
# AI FEATURES (OPTIONAL)
# ===================
# For video transcription
DEEPGRAM_API_KEY=
# For AI summaries (Groq is preferred, OpenAI as fallback)
GROQ_API_KEY=
OPENAI_API_KEY=
# ===================
# OAUTH (OPTIONAL)
# ===================
# Google OAuth
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=