To deploy you client code and assets to the Client project area, you can use the deploy command.
bm client deploy <path to local project>
To deploy the contents of the current folder
bm client deploy .
Once deployed, your changes will be instantly available at your project URL.
- The Client CLI tool will only upload files that have changed since the last deploy.
- You must specify a folder, you can not specify an individual file to be deployed.
- You should run the deploy command from the same folder location where the scope was set.
Additional Options
--skip
The "skip" option will bypass unchanged files (default) on your local machine.
bm client deploy --skip
--no-skip
The "no-skip" option will upload all files, including unchanged files on your local machine.
bm client deploy --no-skip
--prune
The "prune" option will remove any files that don't exist on your local machine.
bm client deploy --prune