Start Your First Project
If you have set up your environment correctly, starting a new project can be using the CLI.
$ npx @jetshop/cli init project-nameThis will create a folder named project-name your current working directory,
please change the name in the command above to match your project name. It will
also download the default template files and install the required dependencies
using yarn.
To start developing open the generated project and make sure you have the configuration options set up properly. Then start the development server:
$ yarn startDebugging
To run the server in debug mode:
$ yarn start:devNow you can use the Google Chrome inspector to debug the node server. Go to chrome://inspect/#devices to add breakpoints and inspect data. This is especially helpful if you have issues with server side rendering.
Deployment Setup
Please contact Norce Product Support to get this set up properly.