sepp v1.0.0
sepp
A cli tool to initialize and build boilerplates and projects
Installation
$ npm i -g seppor
$ yarn global add seppUsage
Forget the times where you git clone a boilerplate or copy a folder and changing packagenames, authors, and readmes. Now just type:
$ sepp startCommands
Sepp was build to be as simple as possible, so there are just a few commands you need to know.
Options
Sepp was build to be as simple as possible, so there are just a few options you need to know.
sepp start
With sepp start you can create a new project.
This command will search for templates inside your home directory for a .sepp/templates directory. This is the place where you can save your templates. You can either add them manually or by adding git repositories via the sepp add <url> command.
# create a new project
$ sepp startsepp add
With sepp add <url> you can add new template project from any git remote repository.
This command will search for the repository behind the <url> you provided and clone it to .sepp/templates. If you use username/repositoryname, this command will search by default repositories on github.
# add the node-module template
$ sepp add aichbauer/node-modulesepp remove
With sepp remove you can remove a installed sepp template.
# remove the node-module template
$ sepp remove node-modulesepp search
With sepp search you can display all sepp templates available on github.
# list all available templates on github
$ sepp searchsepp list
With sepp list you can display all sepp templates that are installed.
# list all installed templates
$ sepp listsepp version
With sepp version you can display the current version of sepp.
# current version
$ sepp versionsepp --help
With sepp --help you can display usage of sepp.
# usage of cli
$ sepp --helpLICENSE
MIT © Lukas Aichbauer
8 years ago