Questions on how to deploy a custom client #3060
-
I was wondering if anyone could guide me on how to
Now that you have the Hubs repository cloned you'll need to install some dependencies. You'll need Node JS installed first. Then you'll install the hubs dependencies. We recommend using npm ci instead of npm install so that you always use the versions of modules in the package-lock.json file.
I don't get past this. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Have you downloaded Nodejs? https://www.npmjs.com/get-npm Once you have the Hubs repo on your machine navigate to the directory with your just cloned Hubs repo (using Hope this helps |
Beta Was this translation helpful? Give feedback.
Have you downloaded Nodejs? https://www.npmjs.com/get-npm
Open your terminal or command prompt and run the
npm -v
ornode -v
.Once you have the Hubs repo on your machine navigate to the directory with your just cloned Hubs repo (using
ls
(Mac or linux) ordir
(Windows) to check current directory and change directory withcd
(both)) , then runnpm ci
in your terminal/command prompt.Hope this helps