Merge branch 'main' into perm-x

This commit is contained in:
Philipinho
2026-01-31 16:19:40 +00:00
58 changed files with 942 additions and 425 deletions
@@ -37,7 +37,8 @@ async function bootstrap() {
const logger = new Logger('CollabServer');
const port = process.env.COLLAB_PORT || 3001;
await app.listen(port, '0.0.0.0', () => {
const host = process.env.HOST || '0.0.0.0';
await app.listen(port, host, () => {
logger.log(`Listening on http://127.0.0.1:${port}`);
});
}