Editing Automated Task Framework's Web.config File
Before configuring an automated task in the Ingeniux Automated Tasks Framework application, edit the default values in the Web.config file's appSettings element.
To configure the sample Web.config file:
- In a file browser, navigate to [path-to-cms-site-instance]\App_Data\xml\Custom\automated\Standard_Operations.
- Open Web.config in a text editor and examine the appSettings node:
<appSettings> ... <add key="DoEmptyRecycleBin" value="true" /> <add key="DoPublish" value="true" /> <add key="PublishTargets" value="Production" /> </appSettings>
-
In this example, these key/value pairs configure the default automated tasks. For instance, when
DoEmptyRecycleBin
orDoPublish
are set totrue
, those tasks execute. Thevalue
set to thePublishTargets
key specifies the publishing target. (Edit appSettings values according to your needs.)
Next Steps:
- For information about creating your own automated task controller, see Creating Automated Tasks Web API Controllers (Optional).
- See Configuring Automated Tasks Application (Required).