-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathenv.example
More file actions
61 lines (45 loc) · 1.81 KB
/
Copy pathenv.example
File metadata and controls
61 lines (45 loc) · 1.81 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
# URL for the transcription server
TRANSCRIPTION_SERVER_URL=http://localhost:8000
# Base URL for DataFetcher
BTC_TRANSCRIPTS_URL="https://btctranscripts.com"
# Deepgram API Key for transcription
# Required for using the Deepgram transcription service
DEEPGRAM_API_KEY=
# AWS S3 Bucket for uploading models
# Required if you want to upload transcription models to S3
S3_BUCKET=
# Configuration profile to use
# Specifies which configuration profile from config.ini to use
PROFILE="development"
# --- GitHub Integration ---
# The following variables are required for pushing transcripts to GitHub
# GitHub App ID for repository integration
GITHUB_APP_ID=
# Base64 encoded private key for the GitHub App
GITHUB_PRIVATE_KEY_BASE64=
# Installation ID for the GitHub App
GITHUB_INSTALLATION_ID=
# Owner of the target GitHub repository (e.g., 'bitcointranscripts')
GITHUB_REPO_OWNER=
# Name of the target GitHub repository (e.g., 'bitcointranscripts')
GITHUB_REPO_NAME=
# Name of the target GitHub metadata repository
GITHUB_METADATA_REPO_NAME=
# --- Database ---
# Connection string for the database. Pick one:
#
# 1. Local PostgreSQL via Docker (run `docker compose up -d postgres` first,
# then `tstbtc db init` to create the schema):
DATABASE_URL=postgresql://bitcoin:bitcoin@127.0.0.1:5434/transcription_engine
#
# 2. AWS RDS PostgreSQL (or any remote Postgres):
# DATABASE_URL=postgresql://user:password@your-rds-endpoint.region.rds.amazonaws.com:5432/transcription_engine
# --- Ingestion Pipeline ---
# YouTube Data API v3 key for automated channel scanning
YOUTUBE_API_KEY=
# Google API Key for Gemini models (used for content classification and LLM calls)
GOOGLE_API_KEY=
# SmallestAI Pulse STT API key (optional, for SmallestAI transcription)
SMALLEST_API_KEY=
# OpenAI API key (for correction and summarization)
OPENAI_API_KEY=