-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (25 loc) · 1.69 KB
/
.env.example
File metadata and controls
28 lines (25 loc) · 1.69 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
# ─────────────────────────────────────────────
# Cloudflare R2 (S3-compatible object storage)
# ─────────────────────────────────────────────
CLOUDFLARE_R2_ACCESS_KEY_ID=your_r2_access_key
CLOUDFLARE_R2_SECRET_ACCESS_KEY=your_r2_secret_key
CLOUDFLARE_R2_ENDPOINT=https://<account-id>.r2.cloudflarestorage.com
CLOUDFLARE_R2_BUCKET_NAME=your-bucket-name
CLOUDFLARE_R2_PUBLIC_URL=https://pub-xxxx.r2.dev
# ─────────────────────────────────────────────
# Redis (used by BullMQ for job queuing)
# ─────────────────────────────────────────────
REDIS_HOST=127.0.0.1
REDIS_PORT=6379
# ─────────────────────────────────────────────
# PostgreSQL (video status tracking)
# ─────────────────────────────────────────────
DATABASE_HOST=127.0.0.1
DATABASE_PORT=5432
DATABASE_USERNAME=postgres
DATABASE_PASSWORD=postgres
DATABASE_NAME=videos_db
# ─────────────────────────────────────────────
# FFmpeg (auto-detected at /usr/bin/ffmpeg)
# Install: sudo apt install ffmpeg
# ─────────────────────────────────────────────