The setup command creates all the necessary collections, taxonomies, and blueprints to get you started. This won't override existing collections, taxonomies, and blueprints.
php please snipcart:setup
You can restore the collections, taxonomies, and blueprints to their factory preset by adding the --force
flag to the command. This will purge all the changes you may have made.
php please snipcart:setup --force
The setup command is run automatically during the installation process. You only need to manually run it, if you change a collection or taxonomy handle in the addon's config.
The migrate command updates your products collection and entries according to the settings defined in the sites
array in config/snipcart.php
.
php please snipcart:migrate
You need to run this command if you add or remove a site or change a value.
The config and translations are automatically merged and loaded. You can publish them using the following commands.
Publish the config to config/snipcart.php
php please vendor:publish --tag=snipcart-config
Publish the translations to resources/lang/vendor/snipcart
php please vendor:publish --tag=snipcart-translations