TitanBot is a powerful, feature-rich Discord bot designed to enhance your server experience with comprehensive moderation tools, engaging economy systems, utility features, and much more. Built with modern Discord.js v14 and PostgreSQL for optimal performance and data persistence.
- 🌟 Features Overview
- 🚀 Quick Setup
- ⚙️ Manual Installation Steps
- 🗄️ Database System
- 🌐 Support Server
- 🏗️ Bot Architecture
- 🤝 Contributing
TitanBot offers a complete suite of tools for Discord server management and community engagement:
|
|
For a detailed step-by-step setup guide, watch our comprehensive video tutorial: TitanBot Setup Tutorial
TitanBot is fully containerized for easy deployment.
-
Clone the repository:
git clone https://github.com/codebymitch/TitanBot.git cd TitanBot -
Configure environment variables: Create a
.envfile from.env.exampleand fill in your bot details and PostgreSQL credentials. -
Start the containers:
docker-compose up -d
This will start both the bot and a persistent PostgreSQL database.
The bot is automatically published to GitHub Container Registry on every push to main.
docker pull ghcr.io/codebymitch/titanbot:main- Node.js 18.0.0 or higher
- PostgreSQL server (recommended) or memory storage fallback
- Discord bot application with proper intents
-
Clone the Repository
git clone https://github.com/codebymitch/TitanBot.git cd TitanBot -
Install Dependencies
npm install
-
Configure Environment Variables
cp .env.example .env
Edit
.envwith your configuration (only the following variables require configuration, leave remaining variables as default):# Discord Bot Configuration DISCORD_TOKEN=your_discord_bot_token_here CLIENT_ID=your_discord_client_id_here GUILD_ID=your_discord_guild_id_here # PostgreSQL Configuration (Primary Database) POSTGRES_URL=postgresql://postgres:yourpassword@localhost:5432/titanbot POSTGRES_HOST=localhost POSTGRES_PORT=5432 POSTGRES_DB=titanbot POSTGRES_USER=postgres POSTGRES_PASSWORD=yourpassword
Production note:
NODE_ENV=productionLOG_LEVEL=warnfor a clean production console (critical issues + startup status)LOG_LEVEL=infoif you want more detailed operational logs- If your chosen
PORTis already used, TitanBot automatically tries the next port(s)
Environment options reference:
NODE_ENV:development,production,test(any non-productionvalue is treated as non-production)LOG_LEVEL:error,warn,info,http,verbose,debug,silly- Accepted aliases for
LOG_LEVELin this bot:warns,warning,warnings→warn
Recommended production
.env(easy mode + default mode):NODE_ENV=production LOG_LEVEL=warn WEB_HOST=0.0.0.0 PORT=3000 PORT_RETRY_ATTEMPTS=5
This gives clear startup/online status messages while keeping logs simple for non-technical operators. If port
3000is busy, the bot tries the next available ports automatically (up toPORT_RETRY_ATTEMPTS). -
Setup PostgreSQL Database (Optional but recommended)
# Create database and user createdb titanbot createuser titanbot psql -c "ALTER USER titanbot PASSWORD 'yourpassword';" psql -c "GRANT ALL PRIVILEGES ON DATABASE titanbot TO titanbot;"
-
Test Database Connection
npm run test-postgres
-
Start the Bot
npm start
TitanBot uses PostgreSQL as its primary database with intelligent fallback to memory storage:
- ACID Compliance: Reliable transactions and data integrity
- High Performance: Optimized queries and connection pooling
- Persistence: Data survives bot restarts and crashes
- Complex Queries: Advanced data analysis capabilities
- Scalability: Better performance for large datasets
- TTL Support: Automatic key expiration for temporary data
- Connection Management: Automatic reconnection with exponential backoff
- Automatic Schema Creation: Tables and indexes created on connection
- Memory Storage: Automatic fallback when PostgreSQL is unavailable
- Graceful Degradation: Bot continues functioning without database
- Backward Compatibility: Maintains existing API structure
- Zero Downtime: Seamless switching between database and memory
- Discord.js v14 - Modern Discord API wrapper
- Node.js 18+ - JavaScript runtime environment
- PostgreSQL - High-performance relational database
- Express.js - Web server for health checks
- Winston - Advanced logging system
- Node-cron - Scheduled task management
TitanBot requires the following Discord intents:
- Guilds
- Guild Messages
- Message Content
- Guild Members
- Guild Message Reactions
- Guild Voice States
- Direct Messages
- Bot
- Applications.commands
- View Channels
- Send Messages
- Embed Links
- Attach Files
- Read Message History
- Manage Messages
- Manage Channels
- Manage Roles
- Kick Members
- Manage Messages
- Ban Members
- Moderate Members
- Connect
We welcome contributions to TitanBot! Here's how you can help:
- Fork the repository
- Create a feature branch
- Make your changes
- Test thoroughly
- Submit a pull request
- Follow existing code style
- Add proper error handling
- Include documentation for new features
- Test with PostgreSQL and memory storage
TitanBot is released under the MIT License. See LICENSE for details.
Thank you for choosing TitanBot for your Discord server! We're constantly working to improve and add new features based on community feedback.
Made with ❤️
Last updated: April 2026