69 lines
1.8 KiB
Plaintext
69 lines
1.8 KiB
Plaintext
# Postgres & Migrate
|
|
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=postgres
|
|
POSTGRES_DB=omnivore
|
|
PGPASSWORD=postgres
|
|
POSTGRES_USER=postgres
|
|
PG_REPLICATION=false
|
|
|
|
PG_HOST=postgres
|
|
PG_PASSWORD=app_pass
|
|
PG_DB=omnivore
|
|
PG_USER=app_user
|
|
PG_PORT=5432
|
|
PG_POOL_MAX=20
|
|
|
|
# API
|
|
|
|
API_ENV=local
|
|
IMAGE_PROXY_SECRET=some-secret
|
|
JWT_SECRET=some_secret
|
|
SSO_JWT_SECRET=some_sso_secret
|
|
GATEWAY_URL=http://api:8080/api
|
|
CONTENT_FETCH_URL=http://content-fetch:8080/?token=some_token
|
|
GCS_USE_LOCAL_HOST=true
|
|
GCS_UPLOAD_BUCKET=omnivore
|
|
AUTO_VERIFY=true
|
|
AWS_ACCESS_KEY_ID=minio # Used for Minio S3 Client
|
|
AWS_SECRET_ACCESS_KEY=miniominio
|
|
AWS_REGION=us-east-1
|
|
CONTENT_FETCH_QUEUE_ENABLED=true
|
|
|
|
IMAGE_PROXY_URL=http://localhost:7070 # Need to change this for NGINX
|
|
CLIENT_URL=http://localhost:3000 # Need to change this when using NGINX
|
|
LOCAL_MINIO_URL=http://localhost:1010
|
|
|
|
# Redis
|
|
REDIS_URL=redis://redis:6379/0
|
|
|
|
#MAIL
|
|
WATCHER_API_KEY=mail-api-key
|
|
LOCAL_EMAIL_DOMAIN=domain.tld
|
|
LOCAL_EMAIL_DOMAIN=domain.tld
|
|
SNS_ARN=arn_of_sns #for if you use SES and SNS for Email.
|
|
|
|
# Web
|
|
APP_ENV=prod
|
|
BASE_URL=http://localhost:3000 # Front End - Need to change this when using NGINX
|
|
SERVER_BASE_URL=http://localhost:4000 # API Server, need to change this when using NGINX
|
|
HIGHLIGHTS_BASE_URL=http://localhost:3000 # Front End - Need to change this when using NGINX
|
|
|
|
# Content Fetch
|
|
|
|
VERIFICATION_TOKEN=some_token
|
|
REST_BACKEND_ENDPOINT=http://api:8080/api
|
|
SKIP_UPLOAD_ORIGINAL=true
|
|
|
|
# Minio
|
|
MINIO_ACCESS_KEY=minio
|
|
MINIO_SECRET_KEY=miniominio
|
|
AWS_S3_ENDPOINT_URL=http://minio:9000
|
|
|
|
# Export
|
|
EXPORT_QUEUE_NAME=omnivore-backend-queue
|
|
|
|
# Youtube
|
|
YOUTUBE_TRANSCRIPT_PROMPT=Reformat the supplied transcript data adding formatting, puncuation, and paragraphs, but do not summarize or change the content. Format the output as markdown.
|
|
YOUTUBE_MAXIMUM_VIDEO_DURATION_TRANSCRIPT=1801
|