The pages project includes all the client-sided code (js/css) and configuration to run pages.adobe.com on helix.
The public website is up and running on:
The "inner CDN" or helix origin is at:
First ensure that you have a somewhat recent version of NPM and Node.
Check your NPM version:
npm -v
Check your Node version:
node -v
If you can't run these commands, install NPM and Node.
If you need to update your existing NPM:
npm install -g npm@latest
If you need to update your existing version of Node, use NVM:
nvm install node
If you don't have NVM, install it with these instructions.
Use your fresh NPM to install the Helix client.
npm install -g @adobe/helix-cli
git clone https://github.com/adobe/pages
Switch into the /pages
directory of the repository:
cd pages
Run the command to start up Helix:
hlx up
This should automatically open http://localhost:3000/
in your browser. Changes to your local Github repo will show up there.