Skip to content

0.1.4

Compare
Choose a tag to compare
@mcred mcred released this 19 Feb 20:46
· 5 commits to master since this release

By default DAF will look for a .env file in the root directory where you run DAF. Optionally, you can supply a --env="prod.env" variable and it will load that file instead. If neither file is specified or available, it will use the ENV from the host.

Example: java -jar daf.jar --env=develop.env

A specific bookmark name is available as a CLI parameter. This is an optional parameter. If not supplied, it will default to the environment-githash pattern.

Example: java -jar daf.jar --bookmark=newBookmarkName

DAF will look for a job conflict, wait and then retry. The retryLimit and waitTime are available as CLI parameters. By default, it will try 5 times and wait 30 seconds between each attempt before failing.

Example: java -jar daf.jar --retryLimit=5 --waitTime=30