https://github.com/cryptiklemur/discord-analytics
Discord Analytics
https://github.com/cryptiklemur/discord-analytics
Last synced: 8 months ago
JSON representation
Discord Analytics
- Host: GitHub
- URL: https://github.com/cryptiklemur/discord-analytics
- Owner: cryptiklemur
- Created: 2025-09-06T22:06:55.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-09-16T15:31:06.000Z (9 months ago)
- Last Synced: 2025-10-06T01:47:28.631Z (8 months ago)
- Language: TypeScript
- Homepage: https://v0-discord-analytics.vercel.app
- Size: 758 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Discord Analytics
A monorepo containing Discord bot and analytics dashboard.
## Structure
```
discord-analytics/
├── packages/
│ ├── bot/ # Discord bot
│ ├── shared/ # Shared types and utilities
│ └── site/ # Next.js analytics dashboard
```
## Setup
1. Install dependencies:
```bash
npm install
```
2. Set up environment variables:
- Copy `packages/bot/.env.example` to `packages/bot/.env`
- Add your Discord bot token
3. Development:
```bash
# Run all packages in development
npm run dev
# Run specific package
npm run site:dev # Dashboard
npm run bot:dev # Bot
```
## Scripts
- `npm run dev` - Start all packages in development mode
- `npm run build` - Build all packages
- `npm run lint` - Lint all packages
- `npm run format` - Format all packages
- `npm run typecheck` - Type check all packages