javanile/copycode

A tool to copy a working copy

Maintainers

Package info

github.com/javanile/copycode

Issues

Type:application

pkg:composer/javanile/copycode

Statistics

Installs: 25

Dependents: 0

Suggesters: 0

Stars: 4

v0.0.7 2016-09-08 13:17 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"]
        }   
    ] 
}