to-be-continuous template skeleton project
This project allows creating a new to-be-continuous template repository from scratch in seconds using cookiecutter.
Usage
- Install
cookiecutter
globally (requires Python installed):pip install cookiecutter
- Run cookiecutter to create a new to-be-continuous template project:
cookiecutter https://gitlab.com/to-be-continuous/tools/template-skeleton-2
- init the Git repo and share
cd name-of-template git init . git remote add origin https://gitlab.com/to-be-continuous/name-of-template.git git add . git commit -m 'initial commit' git push