Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/client/dev-server.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const SERVER_NAME = 'local.webaverse.com';
const COMPILER_NAME = 'local-compiler.webaverse.com';
const RENDERER_NAME = 'local-renderer.webaverse.com';

const port = parseInt(process.env.PORT, 10) || 443;
const port = parseInt(process.env.PORT, 10) || 8080;
const COMPILER_PORT = parseInt(process.env.COMPILER_PORT, 10) || 3000;
const RENDERER_PORT = parseInt(process.env.RENDERER_PORT, 10) || 5555;

Expand Down
2 changes: 1 addition & 1 deletion packages/engine/dev-server.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const SERVER_NAME = 'local.webaverse.com';
const COMPILER_NAME = 'local-compiler.webaverse.com';
const RENDERER_NAME = 'local-renderer.webaverse.com';

const port = parseInt(process.env.PORT, 10) || 443;
const port = parseInt(process.env.PORT, 10) || 8080;
const COMPILER_PORT = parseInt(process.env.COMPILER_PORT, 10) || 3333;
const RENDERER_PORT = parseInt(process.env.RENDERER_PORT, 10) || 5555;

Expand Down
2 changes: 1 addition & 1 deletion packages/engine/endpoints.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {isProd} from './env.js';
export const compilerBaseUrl = isProd ?
`https://compiler.webaverse.com/`
:
`https://local-compiler.webaverse.com/`;
`https://local-compiler.webaverse.com:8080/`;

// scenes
export const scenesBaseUrl = isProd ?
Expand Down