13 lines
286 B
Plaintext
13 lines
286 B
Plaintext
|
|
#!/usr/bin/env php
|
||
|
|
<?php
|
||
|
|
|
||
|
|
$scriptDir = dirname(__FILE__).'/';
|
||
|
|
|
||
|
|
define("PROCESSMAKER_PATH", $scriptDir);
|
||
|
|
define("WORKFLOW_PATH", $scriptDir . 'workflow/');
|
||
|
|
define("WORKFLOW_BIN_PATH", $scriptDir . 'workflow/engine/bin/');
|
||
|
|
|
||
|
|
include ( WORKFLOW_BIN_PATH . '/commands.php');
|
||
|
|
|
||
|
|
?>
|