Skip to content
Snippets Groups Projects
user avatar
Pierre Smeyers authored
a16d68f3
History

to-be-continuous template skeleton project

This project allows creating a new to-be-continuous template repository from scratch in seconds using cookiecutter.

Usage

  1. Install cookiecutter globally (requires Python installed):
    pip install cookiecutter
    ℹ️ for other installation options, please have a look at the official doc.
  2. Run cookiecutter to create a new to-be-continuous template project:
    cookiecutter https://gitlab.com/to-be-continuous/tools/template-skeleton-2
    then answer the CLI questions
  3. 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