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-name
This 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 start
Debugging
To run the server in debug mode:
$ yarn start:dev
Now 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.