A modern Rails 8 application for managing Unreal Tournament bot configurations, including bot profiles, teams, player models, and game settings.
- Ruby 3.4.7
- Rails 8.1
- PostgreSQL 17
- Hotwire (Turbo + Stimulus)
- Propshaft (Modern asset pipeline)
- Importmaps (No npm build step needed)
- Docker & Docker Compose
- (Or) Ruby 3.3.10 and PostgreSQL 17
docker compose build --no-cache
docker compose run --rm utbots bundle install
docker compose run --rm utbots bundle exec rails db:setup
docker compose upThe application will be available at http://localhost:3000
- Install dependencies:
bundle install- Setup database:
rails db:create db:migrate db:seed- Start the server:
rails serverThe application uses PostgreSQL. Database configuration is managed via environment variables:
DATABASE_HOST- PostgreSQL host (default: localhost)DATABASE_USER- Database user (default: postgres)DATABASE_PASSWORD- Database passwordDATABASE_NAME- Database name
This is a barebones Rails 8 application with:
- Models: Complete data models for UT bots, teams, configurations
- Migrations: All database schema definitions
- Controllers: RESTful resource controllers
- Views: Server-rendered ERB templates
- Hotwire: Modern SPA-like experience without JavaScript frameworks
- Vanilla CSS: Clean, modern styling without heavy CSS frameworks
The API manages the following resources:
- Bots - Individual bot configurations
- Teams - Bot team compositions
- Authors - Bot creators
- Combat Styles - Fighting behavior patterns
- Player Models - Character models
- Voice Packs - Bot voice audio
- Weapons - Weapon configurations
- Maps - Game map settings
- Game Modes - Game type configurations
- Mutators - Game modifiers
- Colours - Team color settings
- XBots Configurations - Extended bot configurations
This project is open source and available under the MIT License.