Deploying to Atlas Worlds Server

This line of code is using the dcl command to deploy to a new custom world server. The deploy command is used to initiate the deployment process, and the --target-content flag specifies the URL where the content for the new server can be found. In this case, the content is located at "https://worlds-server.atlascorp.io/content".

For scenes built with SDK6

dcl deploy --target-content https://worlds-server.atlascorp.io/content

For scenes built with SDK7

npm run deploy -- --target-content https://worlds-server.atlascorp.io/content

Scenes Larger than 400 MB

When deploying a scene to a Worlds server that has greater than 400 MB in total file size, use the --skip-file-size-check flag during deployment

dcl deploy --target-content https://worlds-server.atlascorp.io/content --skip-file-size-check

Last updated