WIP: basic server, no features

This commit is contained in:
Aaron Kimbrell
2026-01-25 22:33:51 -06:00
parent c723ce2588
commit f1847d1f20
67 changed files with 7655 additions and 37 deletions

View File

@@ -0,0 +1,15 @@
# Web Dashboard Configuration
# The port to listen on for HTTP/WebSocket connections
port=2006
# The IP address to bind to
# Use 127.0.0.1 for localhost only (recommended for security)
# Use 0.0.0.0 to allow external access (not recommended without authentication)
listen_ip=127.0.0.1
# How often to broadcast updates to connected clients (in milliseconds)
broadcast_interval=2000
# Minimum GM level required to access the dashboard (default: 0 = any user)
min_dashboard_gm_level=0

View File

@@ -11,3 +11,7 @@ world_port_start=3000
prestart_servers=1
master_password=3.25DARKFLAME1
# Enable the web dashboard (0 = disabled, 1 = enabled)
# Dashboard settings are configured in dashboardconfig.ini
enable_dashboard=0