- Add FEATURE_PLAN-telegram.md with 6-phase implementation roadmap - Add scripts/README.telegram.md with step-by-step setup guide - Add scripts/telegram-test.js standalone test script - Add scripts/.env.telegram.example template for credentials - Update .gitignore to protect Telegram credentials Phase 1 complete: Bot setup, privacy mode configuration, and successful test message delivery.
40 lines
492 B
Plaintext
40 lines
492 B
Plaintext
# Development data backups
|
|
data-backup/
|
|
.copilot/
|
|
|
|
# Node modules
|
|
node_modules/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
|
|
# Telegram credentials
|
|
scripts/.env.telegram
|
|
scripts/node_modules/
|
|
scripts/package-lock.json
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
|
|
# Backend data (uploaded images, database, etc.)
|
|
backend/src/data/
|
|
|
|
# Development-specific files (created by ./dev.sh)
|
|
frontend/.env
|
|
frontend/env.sh
|
|
frontend/env-config.js
|