5 releases

0.2.4 May 17, 2019
0.2.3 May 16, 2019
0.2.2 May 16, 2019
0.2.0 May 16, 2019
0.1.5 May 5, 2019

#79 in #code

26 downloads per month

MIT license

12KB
166 lines

gig

A command line tool to rapily scaffold projects using the power of YAML

Usage

$ gig <SCAFFOLD.YML FILE> [Project name]

        --git-init, -g, -i ~   Initalize git repository

The YAML file structure follows the following convention:

folder:
        file.ext: "The contents of the file"
        README.md: "
        # Strings can be more than one line
        ## So many lines!
        "

And there can be multiple root nodes

folder:
        file.ext: "The contents of the file"
        README.md: "
        # Strings can be more than one line
        ## So many lines!
        "
folder:
        file.ext: "The contents of the file"
        README.md: "
        # Strings can be more than one line
        ## So many lines!
        "

Important note(s)

The project name param also adheres to directory conventions and gig ./egg.yml egg creates executes the scaffold in the egg directory so gig ./egg.yml . creates executes the scaffold in the current directory so if you use the --git-init flag it will initilize the repo in that place.

Dependencies

~13MB
~289K SLoC