Skip to main content

howtos

HowTos

How to significantly speed up the development process?

  1. Do it first
npm install --save-dev nodemon
  1. Then add
"start:dev": "nodemon dist/store/server/index.js"

in the script section file package.json

  1. Open 3 terminals

  2. execute commands (each in a separate terminal)

npm run build:watch
npm run start:api
npm run start:dev

nodemon views file change and restarts the store

"build:watch" first builds everything, and then rebuilds only the changed

it does not reload the page in the browser automatically, but significantly speeds up the development process

How do I change the language?

You need to modify these files inside the folder config:

config/server.ts
config/admin.tsx
config/server.js
config/store.js

Feel free to add your HowTos.

You can add it by making Pull Request to the https://github.com/Cezerin2/cezerin2.github.io