This package provides a command line utility dw-utils
for managing code on Demandware sites.
dw-utils
[ init
| watch
| clean
[path] [-a
| --activate
] ] | activate
version | log
[level] | (upload
| upload-version
) zip [-a
| --activate
] ] [flags]
The binary provides the following commands.
Command | Description |
---|---|
dw-utils activate version |
Activate the codeversion version |
dw-utils clean [path] |
Equivalant to a project clean in eclipse |
dw-utils init |
Interactively enter configuation options |
dw-utils log [level] |
Poll the log file for updates |
`dw-utils [upload | upload-version]` |
dw-utils watch |
Watch cartridge path and upload changes |
Credentials are stored in a file called dw.json
in the root of the project.
dw-utils will create such a file if called with the --save
option, or interactively by calling dw-utils init
.
The following flags are recognized
Flag | Description |
---|---|
-V, --version | Code version to upload to (defaults to 'version1') |
-H, --hostname | Hostname of remote DW server |
-u, --username | Username for WebDav (Same as Business Manager) |
-C, --cartridges | Path to Cartridges from project root (Default is 'cartridges') |
--save | Save settings for future use |
-a --activate | Activates the version after a clean or an upload-version |
-s, --stability | Length of time the file's size should stay the same before uploading |
-f, --follow | Display only new changes for log compare to tail -f |
-p, --prompt | Prompt for password |
-h, --help | Display help and usage details |
Usage:
dw-utils activate version
This command activates the version passed on the command line. Note that it requires a version to be passed in. If you
wish to activate the current version at the end of a clean
or an upload-version
, that can be accomplished by means
of the -a | --activate
flag
Usage:
dw-utils clean [path]
This is Equivalant to a project clean that you would run in eclipse. It zips up all local files, and uploads them to
the dw instance specified on the command line with -H
, or in dw.json
if it was previously set up. then all the old
code in the apropriate version is deleted, and the zip file is unzipped. This ensures that the files on the remote
are exactly the same as the ones on the client.
The optional path
is the subdirectory of the cartridges
directory you wish to upload.
Usage:
dw-utils upload [version.zip]
This tool can also be invoked as upload-version
which is longer but slightly more self-explanatory.
Upload a code version zip from another instance. In Business Manager, under Code Deployment click on the version you want to download, and click the Download link. This will download a zip file of the code for that version which can be uploaded using this tool.
Usage:
dw-utils init
Interactively enters configuration for the repository and stores it in dw.json
. Make sure to ignore this file in
source controll.
Usage:
dw-utils watch
Watch for changes to files in the cartridge
directory and upload them.
This uploader will bulk upload files if there are more than 5 waiting to be uploaded, which results in very fast uploads
even when there are a lot of changes.
NOTE: if you have stability issues or encounter a lot of errors, try upping the --stability
flag.
Usage:
dw-utils log [level]
level
specifies the logging level, usually one of [debug,warn,eror,fatal]
, but will work with any custom error
logging as well. Upon startup, the command will automatically find the most recently updated log file with a name
matching the level
. The log file is polled at the interval set with -i --interval
with a default of 5s.
Use --follow | -f
to display only changes that happen after the logging starts.
NOTE: this will not show changes to log files created while dw-utils
was running, so if the log file your are looking at
rolls over to a new date, or if there is no log yet for the current day, it will not find it while running. You will
have to exit out of the dw-utils log
and restart it to catch the new file.