diff --git a/scripts/system/places/places.html b/scripts/system/places/places.html
index 243e326996..5dbb11b907 100644
--- a/scripts/system/places/places.html
+++ b/scripts/system/places/places.html
@@ -425,6 +425,9 @@
if (placeRecords[i].metaverseRegion !== "local") {
placeUrl = "hifi://" + placeRecords[i].address;
}
+ if (placeRecords[i].name === "tutorial") {
+ placeUrl = "file:///~/serverless/tutorial.json";
+ }
//Add the place to the list
diff --git a/scripts/system/places/places.js b/scripts/system/places/places.js
index af7a7ece1b..b9cd49bb1f 100644
--- a/scripts/system/places/places.js
+++ b/scripts/system/places/places.js
@@ -94,7 +94,7 @@
if (LocationBookmarks.getHomeLocationAddress()) {
location.handleLookupString(LocationBookmarks.getHomeLocationAddress());
} else {
- location.goToLocalSandbox();
+ Window.location = "file:///~/serverless/tutorial.json";
}
} else if (messageObj.action === "GO_BACK" && (n - timestamp) > INTERCALL_DELAY) {
location.goBack();
@@ -442,7 +442,7 @@
"domain": "",
"domainOrder": "ZZZZZZZZZZZZZZZ",
"metaverseServer": "",
- "metaverseRegion": "local"
+ "metaverseRegion": "local"
};
portalList.push(tutorialPortal);