you can host Decentraland experiences on https://zeit.co/now
but you need to modify the package.json file in the scene to include one line
“now-start”: “dcl start --ci”,
so the contents of the file should look something like this:
package.json
{
"name": "dcl-project",
"version": "1.0.0",
"description": "My new Decentraland project",
"scripts": {
"start": "dcl start",
"now-start": "dcl start --ci",
"build": "decentraland-compiler build.json",
"watch": "decentraland-compiler build.json --watch"
},
"author": "",
"license": "MIT",
"devDependencies": {
"decentraland-api": "latest",
"decentraland": "latest"
},
"dependencies": {
"axios": "^0.18.0"
}
}
Collapse
and the scene needs to use the latest version of the SDK
Definitely going to test this out tomorrow!!!
Everything worked as expected ;)
https://moo-zzle-online.now.sh
[Link may become unresponsive]