-
Notifications
You must be signed in to change notification settings - Fork 4
Settings File
TechieGuy12 edited this page Aug 4, 2022
·
1 revision
The settings file is used to specify additional settings that aren't passed in from the command line.
The settings file is optional, but allows you to specify exclusions, for exluding files and folders, and notifications for sending API requests to an endpoint.
Both the exclusions and notifications are not required to be included in the settings file. You can specify both or one of the elements.
Currently, the XML structure of the settings file is as follows:
<?xml version="1.0" encoding="UTF-8"?>
<settings>
<exclusions>
<files>
<name></name>
</files>
<folders>
<name></name>
</folders>
<attributes>
<attribute></attribute>
</attributes>
<paths>
<path></path>
</paths>
</exclusions>
<notifications>
<waittime></waittime>
<notification>
<url></url>
<method></method>
<data>
<headers>
<header>
<name></name>
<value></value>
</header>
</headers>
<body></body>
</data>
</notification>
</notifications>
</settings>