javanile / copycode
A tool to copy a working copy
v0.0.7
2016-09-08 13:17 UTC
Requires
- php: ^5.3.6 || >=7.0 <7.2
This package is auto-updated.
Last update: 2024-10-11 23:53:38 UTC
README
Copycode able you to copy part of your code project to another place, usefull to update local copy or multiple projects at one time or share file and automatize it delivery or backup your files (only into local machine).
How install
Install me via composer
composer global require javanile/copycode
copycode.json struct
{ "single-task": { "name" : "Single task", "description" : "run a single copy", "from" : "..", "to" : "copy1", "exclude" : ["copycoder.json", "nbproject", "README.md"] }, "grouped-task": [ { "name" : "First task in group", "description" : "copy project", "from" : "..", "to" : "copy2", "exclude" : ["copycoder.json", "nbproject", "README.md"] }, { "name" : "Second task in group", "description" : "copy project", "from" : "..", "to" : "copy3", "exclude" : ["copycoder.json", "nbproject", "README.md"] } ] }