From 2ded02b244c8afd403b14563f1b6989ca7fdacff Mon Sep 17 00:00:00 2001 From: Jamie Hewitt Date: Fri, 12 Aug 2022 10:30:38 +0300 Subject: [PATCH] Updating deployment instructions for next.js static deployment (#1107) --- building-with-ocean/build-a-marketplace/deploying-market.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/building-with-ocean/build-a-marketplace/deploying-market.md b/building-with-ocean/build-a-marketplace/deploying-market.md index de6b9a6f..9a95a548 100644 --- a/building-with-ocean/build-a-marketplace/deploying-market.md +++ b/building-with-ocean/build-a-marketplace/deploying-market.md @@ -15,7 +15,7 @@ All that’s left is for you to host your data marketplace and start sharing it To host your data marketplace, you need to run the build command: ``` -npm run build +npm run build:static ``` This takes a few minutes to run. While this is running, you can get prepared to host your new data marketplace. You have many options for hosting your data marketplace (including AWS S3, Vercel, Netlify and many more). In this guide, we will demonstrate how to host it with surge, which is completely free and very easy to use. @@ -29,7 +29,7 @@ npm install --global surge When this is complete, navigate back to the terminal window that is building your finished data marketplace. Once the build is completed, enter the following commands to enter the public directory and host it: ``` -cd public +cd out ``` ```