mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 21:01:08 +02:00
Final cleanup of references missed in previous rename commits: - Dockerfiles: PUBLIC_MANA_CORE_AUTH_URL → PUBLIC_MANA_AUTH_URL - Go modules: github.com/manacore/* → github.com/mana/* (7 go.mod files) - launchd plists: com.manacore.* → com.mana.* (14 files renamed + content) - Image assets: *_Manacore_AI_Credits* → *_Mana_AI_Credits* (11 files) - .env.example files: ManaCore brand strings → Mana - .prettierignore: stale apps/manacore/* paths → apps/mana/* - Markdown docs (CLAUDE.md, /docs/*): mana-core-auth → mana-auth, etc. Excluded from rename: .claude/, devlog/, manascore/ (historical content), client testimonials, blueprints, npm package refs (@mana-core/*). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
36 lines
1.1 KiB
Text
36 lines
1.1 KiB
Text
# Mana Notification Configuration
|
|
# Copy this file to the project root as .env.notifications
|
|
# cp scripts/mac-mini/notifications.env.example .env.notifications
|
|
|
|
# ============================================
|
|
# Telegram Bot
|
|
# ============================================
|
|
# 1. Message @BotFather on Telegram
|
|
# 2. Send /newbot and follow instructions
|
|
# 3. Copy the bot token here
|
|
TELEGRAM_BOT_TOKEN=
|
|
|
|
# To get your Chat ID:
|
|
# 1. Message your bot
|
|
# 2. Visit: https://api.telegram.org/bot<TOKEN>/getUpdates
|
|
# 3. Find "chat":{"id": YOUR_CHAT_ID}
|
|
TELEGRAM_CHAT_ID=
|
|
|
|
# ============================================
|
|
# Email (via msmtp)
|
|
# ============================================
|
|
# Email address to send alerts to
|
|
EMAIL_TO=
|
|
|
|
# From address (optional)
|
|
EMAIL_FROM=mana@mana.how
|
|
|
|
# Note: For email to work, install and configure msmtp on Mac Mini:
|
|
# brew install msmtp
|
|
# Create ~/.msmtprc with your SMTP settings (see below)
|
|
|
|
# ============================================
|
|
# ntfy.sh (optional, simple push notifications)
|
|
# ============================================
|
|
# Create a topic at ntfy.sh and subscribe in the app
|
|
NTFY_TOPIC=
|