Move the server off the default uvicorn port.

This commit is contained in:
Dan Albert
2022-03-07 00:05:45 -08:00
parent d7e62d0b0b
commit 8c63274f57
4 changed files with 8 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
const ENABLE_EXPENSIVE_DEBUG_TOOLS = false;
// Must be kept in sync with game.server.settings.ServerSettings.
const HTTP_BACKEND = "http://[::1]:5000";
const WS_BACKEND = "ws://[::1]:5000/eventstream";
const HTTP_BACKEND = "http://[::1]:1688";
const WS_BACKEND = "ws://[::1]:1688/eventstream";
METERS_TO_FEET = 3.28084;