High-performance API server for Discord/Guilded community management
Features • Quick Start • API Endpoints • Testing • Documentation
The Evobug API Server is a robust, type-safe backend service built with Bun and TypeScript. It provides comprehensive moderation, user management, and economy features for Discord and Guilded communities through an ORPC (Object RPC) interface.
- 🔥 Blazing Fast: Built on Bun runtime for exceptional performance
- 🛡️ Type-Safe: Full TypeScript with strict mode and runtime validation via Zod
- 🔄 Real-time Communication: ORPC-based architecture for seamless client-server interaction
- 📊 Advanced Moderation: Violation tracking, standing calculation, and suspension management
- 💰 Economy System: Points, daily rewards, work commands, and leaderboards
- 🗄️ PostgreSQL + Drizzle ORM: Robust data persistence with type-safe queries
- Violation Management: Issue, track, and expire violations with severity levels
- Standing Calculation: Dynamic user standing based on violation history
- Suspension System: Temporary and permanent account restrictions
- Review Process: Appeal and review system for violations
- Bulk Operations: Efficient bulk expiration and management
- Multi-Platform Support: Discord and Guilded ID linking
- Role-Based Access: User, Moderator, and Admin roles
- Profile Management: Comprehensive user profiles and settings
- Points System: Earn and spend virtual currency
- Daily Rewards: Claim daily bonuses with cooldown tracking
- Work System: Work commands with dynamic payouts
- Leaderboards: Global and time-based rankings
- Activity Tracking: Detailed user activity statistics
- Authentication Middleware: Secure endpoint protection
- Input Validation: Zod schemas for all API inputs
- SQL Injection Protection: Parameterized queries via Drizzle ORM
- Rate Limiting: Built-in connection pooling and limits
- Bun (latest version)
- PostgreSQL 14+
- Node.js 18+ (for some tooling compatibility)
# Clone the repository
git clone https://github.com/evobug-com/api.git
cd evobug.com/api
# Install dependencies
bun install
# Set up environment variables
cp .env.example .env
# Edit .env with your DATABASE_URL# Generate database schema
bun run db:generate
# Run migrations
bun run db:migrate
# (Optional) Open Drizzle Studio for database management
bun run db:studio# Start development server with hot reload
bun run dev
# Server will be available at http://localhost:3001/rpcThe API uses ORPC routing with the following structure:
users.create// Create new userusers.get// Get user by IDusers.update// Update user profileusers.stats.user// Get user statisticsusers.stats.daily.claim// Claim daily rewardusers.stats.work.claim// Claim work rewardusers.stats.top// Get leaderboardmoderation.violations.issue// Issue new violationmoderation.violations.list// List violationsmoderation.violations.expire// Expire violationmoderation.violations.updateReview// Update violation reviewmoderation.standing.get// Get user standingmoderation.standing.calculate// Calculate standing scoremoderation.standing.bulk// Bulk standing querymoderation.standing.restrictions// Get active restrictionsmoderation.suspensions.create// Create suspensionmoderation.suspensions.lift// Lift suspensionmoderation.suspensions.check// Check suspension statusmoderation.suspensions.history// Get suspension history# Run all tests
bun test# Run tests in watch mode
bun test:watch
# Run tests with coverage
bun test:coverage
# Run specific test file
bun test src/contract/stats/stats.spec.ts- Unit tests:
*.spec.tsfiles alongside source code - Uses in-memory database for isolated testing
- Mock context utilities for request simulation
api/
├── src/
│ ├── contract/ # API endpoints and business logic
│ │ ├── standing/ # Standing calculation system
│ │ ├── stats/ # Economy and statistics
│ │ ├── suspensions/ # Suspension management
│ │ ├── users/ # User management
│ │ ├── violations/ # Violation system
│ │ └── router.ts # Main API router
│ ├── db/
│ │ └── schema.ts # Database schema definitions
│ ├── middlewares/
│ │ └── auth.ts # Authentication middleware
│ ├── utils/ # Utility functions
│ └── server.ts # Server entry point
├── drizzle/ # Database migrations
├── scripts/ # Utility scripts
└── tests/ # Test files
# Database
DATABASE_URL=postgresql://user:password@localhost:5432/evobug
# Testing
USE_TEMP_DATABASE=true # Use in-memory database for testing# Server
PORT=3001 # API server portConfigure Drizzle in drizzle.config.ts:
exportdefault{dialect: "postgresql",schema: "./src/db/schema.ts",out: "./drizzle",dbCredentials: {url: process.env.DATABASE_URL!,},};# Development
bun run dev # Start dev server with hot reload# Database
bun run db:generate # Generate migrations from schema
bun run db:migrate # Apply migrations
bun run db:push # Push schema changes directly (dev only)
bun run db:studio # Open Drizzle Studio GUI
bun run db:drop # Drop all tables (careful!)# Testing
bun test# Run tests
bun test:watch # Run tests in watch mode
bun test:coverage # Generate coverage report# Code Quality
bunx tsgo --noEmit # Check TypeScript errors
bunx oxlint --type-aware
# Production
bun run migrate:production # Run production migrations
bun run migrate:data # Migrate legacy data- users: User accounts with platform IDs and roles
- user_stats: Economy points and statistics
- violations: Moderation actions and warnings
- suspensions: Temporary and permanent restrictions
- user_reviews: User review and rating system
- orders: Purchase and transaction history
graph TD
Users -->|1:1| UserStats
Users -->|1:N| Violations
Users -->|1:N| Suspensions
Users -->|1:N| Orders
Users -->|1:N| Reviews
Violations -->|N:1| SeverityLevels
- Set production environment variables
- Run database migrations:
bun run migrate:production
- Start the server:
bun run src/server.ts
// ecosystem.config.jsmodule.exports={apps: [{name: 'evobug-api',script: 'bun',args: 'run src/server.ts',env: {NODE_ENV: 'production',PORT: 3001}}]};- Always use parameterized queries (handled by Drizzle ORM)
- Implement rate limiting for public endpoints
- Use HTTPS in production
- Regularly update dependencies
- Never commit
.envfiles - Use strong PostgreSQL passwords
- Enable PostgreSQL SSL in production
- Fork the repository
- Create your feature branch (
git checkout -b feature/AmazingFeature) - Run tests and linting before committing
- Commit your changes (
git commit -m 'Add some AmazingFeature') - Push to the branch (
git push origin feature/AmazingFeature) - Open a Pull Request
- Use tabs for indentation
- Double quotes for strings
- Maximum line width: 120 characters
- Run
bunx oxlint --type-awarebefore committing
This project is licensed under the MIT License - see the LICENSE file for details.
- Bun - JavaScript runtime
- Drizzle ORM - TypeScript ORM
- ORPC - Type-safe RPC framework
- Zod - TypeScript-first schema validation
For issues and questions:
- Open an issue on GitHub
- Join our Discord server
Made with ❤️ by the Evobug Team