19 lines
492 B
TOML
19 lines
492 B
TOML
# quic_ecs_dt — substrate runtime config
|
|
#
|
|
# Resolution order (figment chain in substrate/src/config.rs):
|
|
# 1. compile-time defaults
|
|
# 2. this file
|
|
# 3. APP_* env vars (e.g. APP_NETWORK__SERVER_PORT=9001)
|
|
#
|
|
# All paths are resolved relative to the cwd at launch — run from the repo root.
|
|
|
|
[network]
|
|
server_port = 9000
|
|
server_interface = "0.0.0.0"
|
|
server_cert = "certs/server.crt"
|
|
server_key = "certs/server.key"
|
|
|
|
[simulation]
|
|
tick_rate_hz = 60
|
|
max_entities = 10000
|