Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 534 Bytes

File metadata and controls

27 lines (18 loc) · 534 Bytes

Guide Synchronization System

The bot automatically synchronizes guide markdown files from src/commands/guides/subjects/ to a Discord channel when it starts up.

Setup

Add to your .env.local file:

GUIDES_CHANNEL_ID=1234567890123456789

Commands

  • npm run sync-guides - Manual sync (updates only changed guides)
  • npm run sync-guides:init - Force sync (posts all guides fresh)

Guide Format

Guides need frontmatter with a name field:

---
name: JavaScript
---

Your guide content here...