Skip to main content
⭐️ If you love EverShop, give it a star on GitHub. Thanks!

EverShop command lines

EverShop comes with several command lines which help you to develop and launch your store.

Below is the list of available commands

Evershop Installation Command

This command is used to install your store. Checkout the installation guide for more information.

evershop install

Evershop Dev Command

This command will start your store in development mode.

evershop dev

Evershop Debug Command

This command will start your store in production mode and enable the debugging.

evershop start --debug
info

The debug mode will enable by default when you run evershop dev command.

Evershop Build Command

This command builds the React components and make your store ready for production. The built components will be stored in the .evershop folder.

evershop build
info

If you want to skip the minimization process, you can run evershop build -- --skip-minify command.

Evershop Start Command

This command starts your store in production mode. You need to run evershop build before running this command.

evershop start

Evershop Admin User Create Command

You can use this command to create a new admin user.

npm run user:create -- --email "user email" --password "user password" --name "user name"

Evershop Admin User Change Password Command

You can use this command to change the password of an admin user.

npm run user:changePassword -- --email "user email" --password "new password"