-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy path.env.example
More file actions
44 lines (33 loc) · 1.16 KB
/
Copy path.env.example
File metadata and controls
44 lines (33 loc) · 1.16 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
# See docs/configuration.md for more information.
# Necessary API Keys
# -------------------
# TikTok Session ID
# Obtain your session ID by logging into TikTok and copying the sessionid cookie.
TIKTOK_SESSION_ID=""
# ImageMagick Binary Path
# Download ImageMagick from https://imagemagick.org/script/download.php
# Leave empty to auto-detect from PATH.
IMAGEMAGICK_BINARY=""
# Pexels API Key
# Register at https://www.pexels.com/api/ to get your API key.
PEXELS_API_KEY=""
# Optional API Keys
# -----------------
# Ollama API Base URL
# Local default: http://localhost:11434
# Docker backend + host Ollama: http://host.docker.internal:11434
OLLAMA_BASE_URL="http://localhost:11434"
# Ollama Model
# Fallback model if frontend did not send a value.
# Pull a model first: ollama pull llama3.1:8b
OLLAMA_MODEL="llama3.1:8b"
# AssemblyAI API Key
# Sign up at https://www.assemblyai.com/ to receive an API key.
ASSEMBLY_AI_API_KEY=""
# Database
# Leave DATABASE_URL empty for local SQLite default.
# In Docker Compose, empty DATABASE_URL uses postgres service fallback.
POSTGRES_DB="moneyprinter"
POSTGRES_USER="moneyprinter"
POSTGRES_PASSWORD="moneyprinter"
DATABASE_URL=""