Both server binaries share the same startup configuration surface through
AppConfig.
--bind/MXD_BINDset the listener bind address. Example:cargo run --bin mxd -- --bind 0.0.0.0:5500.--database/MXD_DATABASEset the database URL or sqlite path. Example:MXD_DATABASE=postgres://localhost/mxd cargo run --bin mxd.--migration-timeout-secs/MXD_MIGRATION_TIMEOUT_SECSmap to themigration_timeout_secsfield and set an optional migration timeout in seconds as an integer. Example:cargo run --bin mxd -- --migration-timeout-secs 30orMXD_MIGRATION_TIMEOUT_SECS=30 cargo run --bin mxd-wireframe-server.
When --migration-timeout-secs is unset, startup uses the built-in default
migration timeout. A value of 0 is normalized back to that default rather
than disabling the watchdog.