Use port 4036 by default

This commit is contained in:
Alex Gleason 2024-05-15 17:09:12 -05:00
parent a8fcd31999
commit 417bd64f4c
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ class Conf {
}
static get port() {
return parseInt(Deno.env.get('PORT') || '8000');
return parseInt(Deno.env.get('PORT') || '4036');
}
static get relay(): `wss://${string}` | `ws://${string}` {