Listen by default on port 3500

The master process will continue to start at port 3000.  In practice, this
ought to make conflicts between master-superviced processes and ones run by
hand less of an issue.
This commit is contained in:
2026-01-01 20:17:26 -06:00
parent 5c93c9e982
commit b0ee53f7d5

View File

@@ -16,7 +16,7 @@ function parseListenAddress(listen: string | undefined): {
port: number;
} {
const defaultHost = "127.0.0.1";
const defaultPort = 3000;
const defaultPort = 3500;
if (!listen) {
return { host: defaultHost, port: defaultPort };