Skip to content

pockost/cookiecutter-script

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cookiecutter-script

Cookiecutter template to generate a bash script project layout.

Usage

Install Cookiecutter:

python3 -m pip install cookiecutter

Generate the project using Cookiecutter:

python3 -m cookiecutter https://github.com/cslucr/cookiecutter-script.git

Layout

This repository provides the following file tree layout:

script/
├── doc
│   ├── requirements.txt
│   ├── source
│   │   ├── api
│   │   │   ├── script
│   │   │   │   └── script.inc
│   │   │   └── script.inc
│   │   ├── api.rst
│   │   ├── author.rst
│   │   ├── compatibility.rst
│   │   ├── conf.py
│   │   ├── description.rst
│   │   ├── index.rst
│   │   ├── license.rst
│   │   ├── link.rst
│   │   ├── parameter
│   │   │   └── help.inc
│   │   ├── parameter.rst
│   │   ├── _static
│   │   │   └── .gitkeep
│   │   ├── uml.rst
│   │   └── usage.rst
│   └── uml
│       └── flow.mmd
├── docthis.sh
├── .github
│   └── workflows
│       └── github-ci.yml
├── .gitignore
├── .gitlab
│   └── issue_templates
│       ├── Bug.md
│       └── Feature.md
├── .gitlab-ci.yml
├── img
│   ├── author.png
│   ├── avatar.png
│   └── flow.png
├── LICENSE
├── README.rst
├── .readthedocs.yml
├── script.sh
├── test
│   └── script.bats
├── testme.sh
└── .travis.yml

License

GPL 3. See the LICENSE file for more details.

Links

Author Information

cslucr

Comunidad de Software Libre de la Universidad de Costa Rica

Releases

No releases published

Packages

No packages published

Languages

  • Shell 96.1%
  • Python 2.5%
  • PHP 1.2%
  • Other 0.2%