feat: update opencut
This commit is contained in:
@@ -1,12 +1,65 @@
|
||||
# FreeSound API 配置
|
||||
FREESOUND_CLIENT_ID=your_freesound_client_id
|
||||
FREESOUND_API_KEY=your_freesound_api_key
|
||||
# ============================================================================
|
||||
# OpenCut Configuration
|
||||
# ============================================================================
|
||||
|
||||
# Cloudflare R2 配置(可选,用于转录功能)
|
||||
CLOUDFLARE_ACCOUNT_ID=your_cloudflare_account_id
|
||||
R2_ACCESS_KEY_ID=your_r2_access_key_id
|
||||
R2_SECRET_ACCESS_KEY=your_r2_secret_access_key
|
||||
R2_BUCKET_NAME=your_r2_bucket_name
|
||||
# Timezone (optional, default: UTC)
|
||||
TZ=UTC
|
||||
|
||||
# Modal 转录服务 URL(可选)
|
||||
MODAL_TRANSCRIPTION_URL=your_modal_transcription_url
|
||||
# ----------------------------------------------------------------------------
|
||||
# Version Configuration
|
||||
# ----------------------------------------------------------------------------
|
||||
POSTGRES_VERSION=17
|
||||
REDIS_VERSION=7-alpine
|
||||
SERVERLESS_REDIS_HTTP_VERSION=latest
|
||||
# Note: OpenCut web image needs to be built from source
|
||||
# See: https://github.com/OpenCut-app/OpenCut
|
||||
OPENCUT_WEB_IMAGE=opencut/web:latest
|
||||
|
||||
# ----------------------------------------------------------------------------
|
||||
# Port Override Configuration
|
||||
# ----------------------------------------------------------------------------
|
||||
# PostgreSQL port (default: 5432)
|
||||
POSTGRES_PORT_OVERRIDE=5432
|
||||
# Redis port (default: 6379)
|
||||
REDIS_PORT_OVERRIDE=6379
|
||||
# Serverless Redis HTTP port (default: 8079)
|
||||
SERVERLESS_REDIS_HTTP_PORT_OVERRIDE=8079
|
||||
# OpenCut web port (default: 3100)
|
||||
OPENCUT_WEB_PORT_OVERRIDE=3100
|
||||
|
||||
# ----------------------------------------------------------------------------
|
||||
# PostgreSQL Configuration
|
||||
# ----------------------------------------------------------------------------
|
||||
POSTGRES_USER=opencut
|
||||
POSTGRES_PASSWORD=change-me-to-secure-password
|
||||
POSTGRES_DB=opencut
|
||||
|
||||
# ----------------------------------------------------------------------------
|
||||
# Redis Configuration
|
||||
# ----------------------------------------------------------------------------
|
||||
# Token for serverless Redis HTTP interface
|
||||
SERVERLESS_REDIS_HTTP_TOKEN=change-me-to-random-token
|
||||
|
||||
# ----------------------------------------------------------------------------
|
||||
# OpenCut Application Configuration
|
||||
# ----------------------------------------------------------------------------
|
||||
# Better Auth configuration
|
||||
OPENCUT_BETTER_AUTH_URL=http://localhost:3100
|
||||
OPENCUT_BETTER_AUTH_SECRET=change-me-to-random-secret-key
|
||||
|
||||
# FreeSound API configuration (required)
|
||||
OPENCUT_FREESOUND_CLIENT_ID=your_freesound_client_id
|
||||
OPENCUT_FREESOUND_API_KEY=your_freesound_api_key
|
||||
|
||||
# ----------------------------------------------------------------------------
|
||||
# Optional: Transcription Features
|
||||
# Leave blank to disable auto-captioning
|
||||
# ----------------------------------------------------------------------------
|
||||
# Cloudflare R2 configuration
|
||||
OPENCUT_CLOUDFLARE_ACCOUNT_ID=
|
||||
OPENCUT_R2_ACCESS_KEY_ID=
|
||||
OPENCUT_R2_SECRET_ACCESS_KEY=
|
||||
OPENCUT_R2_BUCKET_NAME=
|
||||
|
||||
# Modal transcription service URL
|
||||
OPENCUT_MODAL_TRANSCRIPTION_URL=
|
||||
|
||||
Reference in New Issue
Block a user