Was this helpful?
Running a Process
To a run a process in JSON format, use the following syntax:
djengine -RC {fullPathAndFileNameOfProcessRTC}
This runs the process using the settings exactly as they appear in the process runtime configuration file.
When RTC and Process files are in the same directory
If the process RTC file is in the same directory you are running djengine from, then {fullPathAndFileNameOfProcessRTC} can be only the file name of the process RTC and the full path is not required. The entry point is only the process file name. For example:
djengine -RC c:\temp\Package\SimpleProcess.process.rtc
Process RTC file content:
"entryPoint" : "SimpleProcess.process"
When RTC and Process files are not in the same directory
If the process file is not in the same directory as the process RTC file, then {fullPathAndFileNameOfProcessRTC} is the full path of the process RTC file. The entry point is the a relative path to the rtc file or the absolute path. For example:
djengine -RC c:\temp\Package\SimpleProcess.process.rtc
Process RTC file content:
"entryPoint" : "c:/temp/myprocesses/SimpleProcess.process" OR "../../SimpleProcess.process"
Last modified date: 02/09/2024