ds create
1.0.0
created by Austin Poor
A simple CLI program (inspired by create-react-app) for creating program templates.
pip install ds-createInstructions are formatted as follows:
ds-create [command] -n [template-name]List of commands:
snap: save a new templatecreate: extract template contentsupdate: update templatedelete: delete templatelist: list templates or list template contentsList all templates:
ds-create listList info for template app-template:
ds-create list -n app-templateTo save the current directory as a new template called app-template, run the following:
ds-create snap -n app-templateExtract the contents of app-template in the current directory:
ds-create create -n app-templateUpdate the contents of app-template in the current directory:
ds-create update -n app-templateDelete template app-template:
ds-create delete -n app-templateDelete all templates (you'll be prompted for confirmation):
ds-create delete