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 user
users.get // Get user by ID
users.update // Update user profile
users.stats.user // Get user statistics
users.stats.daily.claim // Claim daily reward
users.stats.work.claim // Claim work reward
users.stats.top // Get leaderboardmoderation.violations.issue // Issue new violation
moderation.violations.list // List violations
moderation.violations.expire // Expire violation
moderation.violations.updateReview // Update violation review
moderation.standing.get // Get user standing
moderation.standing.calculate // Calculate standing score
moderation.standing.bulk // Bulk standing query
moderation.standing.restrictions // Get active restrictions
moderation.suspensions.create // Create suspension
moderation.suspensions.lift // Lift suspension
moderation.suspensions.check // Check suspension status
moderation.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:
export default {
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.js
module.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