The recording feature and call to the summary service wasn't working in the docker compose stack. It was a pain for new developper joining the project to understand every piece of the stack. Resolve storage webhook trigger issues by configuring proper environment variables, settings, and MinIO setup to enhance developer experience and eliminate manual configuration requirements. Add new Makefile command to configure MinIO webhook via CLI since webhook configuration cannot be declared as code. Update summary microservice to reflect secure access false setting for MinIO bucket consistency with Tilt stack configuration.
24 lines
598 B
Plaintext
24 lines
598 B
Plaintext
APP_NAME="meet-app-summary-dev"
|
|
APP_API_TOKEN="password"
|
|
|
|
AWS_STORAGE_BUCKET_NAME="meet-media-storage"
|
|
AWS_S3_ENDPOINT_URL="minio:9000"
|
|
AWS_S3_SECURE_ACCESS=false
|
|
|
|
AWS_S3_ACCESS_KEY_ID="meet"
|
|
AWS_S3_SECRET_ACCESS_KEY="password"
|
|
|
|
WHISPERX_BASE_URL="https://configure-your-url.com"
|
|
WHISPERX_ASR_MODEL="large-v2"
|
|
WHISPERX_API_KEY="your-secret-key"
|
|
|
|
LLM_BASE_URL="https://configure-your-url.com"
|
|
LLM_API_KEY="dev-apikey"
|
|
LLM_MODEL="Qwen/Qwen2.5-Coder-32B-Instruct-AWQ"
|
|
|
|
WEBHOOK_API_TOKEN="secret"
|
|
WEBHOOK_URL="https://configure-your-url.com"
|
|
|
|
POSTHOG_API_KEY="your-posthog-key"
|
|
POSTHOG_ENABLED="False"
|