-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
executable file
·27 lines (22 loc) · 1.81 KB
/
Copy path.env.example
File metadata and controls
executable file
·27 lines (22 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
# ── Telegram ──────────────────────────────────────────────────────────────────
# Get this from @BotFather after creating the bot
TELEGRAM_BOT_TOKEN=
# Your numeric Telegram user ID (DM @userinfobot to get it)
# Comma-separated if adding a second user: 123456789,987654321
TELEGRAM_ALLOWED_USER_IDS=
# ── Karakeep ──────────────────────────────────────────────────────────────────
# Internal Docker URL — how the bot reaches Karakeep inside the Docker network.
# 'web' is the default Karakeep service name in their docker-compose.
# If yours is different, check with: docker ps
KARAKEEP_INTERNAL_URL=http://web:3001
# External URL — used in confirmation messages so you can tap to open Karakeep.
# This is the address you use in your browser on the LAN.
KARAKEEP_EXTERNAL_URL=http://YOUR_SERVER_IP:3001
# ── Storage ───────────────────────────────────────────────────────────────────
# Where the SQLite database is stored inside the container.
# Leave this as-is — the /data volume is mapped to the host.
BOT_DATABASE_PATH=/data/karabot.db
# ── Features ──────────────────────────────────────────────────────────────────
# true = use domain-specific scrapers (Reddit JSON, YouTube oEmbed, PubMed API)
# false = send straight to Karakeep without pre-fetching metadata
METADATA_ENRICHMENT=true