Update: you can now
specify entire directories by name rather than having to list each of their files in a project's config.php file.
Example,
Code:
array('files' => array(
'/my_dir'
));
Is automatically expanded to
Code:
array('files' => array(
'/my_dir'/index.php',
'/my_dir/another_file.php'
));
Also,
you can now import existing products into VDE automatically, by using the 'port' command:
Code:
php vde.php port existing_product_id projects/save_here
Next up is adding is removing the required edit as per Andreas' comment above. The latest code is on GitHub - I will only have time to update the official packages once per week or so.
Has anyone had a chance to build a plugin from scratch with this yet? Would love some feedback, especially on the documentation side of things as it was quite rushed. I've been using this method for years, so my steps are probably lacking.