forge/bin/icom/config.example.toml
Jacob Schmidt ebfe77a340 feat: implement complete Forge framework with Rust/Redis backend and Arma 3 integration
Implemented features:
- High-performance Rust extension with Redis persistence
- Actor/player management with loadout, position, and state tracking
- Banking system with deposit, withdraw, and transfer operations
- Physical and virtual garage/locker systems for vehicle and equipment storage
- Organization management with member tracking and permissions
- Client-side UI with React-like state management
- Server-side event-driven architecture with CBA Events
- Security: Self-transfer prevention at multiple layers
- Logging system with per-module log files
- ICOM module for inter-server communication

Co-Authored-By: Warp <agent@warp.dev>
2026-01-04 12:52:15 -06:00

23 lines
562 B
TOML

# Forge ICOM Server Configuration
# Copy this file to config.toml and modify as needed
# Place this file in the same directory as the forge-icom executable
[server]
# Host to bind to
# - "0.0.0.0" = All network interfaces (default, allows remote connections)
# - "127.0.0.1" = Localhost only (for local testing)
host = "0.0.0.0"
# Port to listen on
port = 9090
# Example configurations for different environments:
# Development (localhost only)
# host = "127.0.0.1"
# port = 9090
# Production (all interfaces, custom port)
# host = "0.0.0.0"
# port = 19090