diff --git a/md2resume_dev.php b/md2resume_dev.php new file mode 100644 index 0000000..88d27df --- /dev/null +++ b/md2resume_dev.php @@ -0,0 +1,23 @@ +add('Resume', __DIR__ . '/src'); +// Instantiate our Console application +$console = new Resume\Cli\Resume(); +// If we're running from phar, we get these values from the stub +if (!defined('IN_PHAR')) { + $project = json_decode(file_get_contents(__DIR__ . '/composer.json')); +} +$templatePath = __DIR__ . '/templates'; +$consoleTemplatePath = __DIR__ . '/src/Resume/Templates'; +// Init the app with these params +$console->initialize($templatePath, $consoleTemplatePath, $project); +// Execute the console app. +$console->run(); +/* End of resume.php */