26 lines
1.1 KiB
Plaintext
26 lines
1.1 KiB
Plaintext
# Copy this file to .env and fill in the values on each machine.
|
|
# .env is gitignored — secrets and per-machine paths never leave the device.
|
|
|
|
# --- Trello (shared across machines) ---
|
|
TRELLO_API_KEY=your_trello_api_key_here
|
|
TRELLO_TOKEN=your_trello_token_here
|
|
|
|
# --- Telegram API credentials (shared across machines: one app registration) ---
|
|
TELEGRAM_API_ID=
|
|
TELEGRAM_API_HASH=
|
|
|
|
# --- Per-machine: absolute paths to the telegram-mcp install on THIS machine ---
|
|
# TELEGRAM_MCP_DIR — root of the telegram-mcp checkout (used by the session generator)
|
|
# TELEGRAM_MCP_BIN — the telegram-mcp executable inside that checkout's .venv
|
|
TELEGRAM_MCP_DIR=/absolute/path/to/telegram
|
|
TELEGRAM_MCP_BIN=/absolute/path/to/telegram/.venv/bin/telegram-mcp
|
|
|
|
# --- Per-machine Telegram session strings ---
|
|
# DO NOT copy these between machines. Each device/IP must have its own session,
|
|
# or Telegram will permanently revoke the auth key.
|
|
# Generate on THIS machine with:
|
|
# pnpm tg:session:usulsu -> writes TELEGRAM_SESSION_STRING
|
|
# pnpm tg:session:helper -> writes TELEGRAM_SESSION_STRING_HELPER
|
|
TELEGRAM_SESSION_STRING=
|
|
TELEGRAM_SESSION_STRING_HELPER=
|