Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Popper-CLI

A CLI tool to help bootstrap projects that follow the Popper convention. For a quickstart guide on how to use the CLI, look here.

Install

pip

We have a pip package available. To install:

pip install popper

Usage

To get an overview and list of commands check out the command line help:

popper --help

Bash-completion

To enable auto-completion support, you will need to activate the bash-completion.sh script inside the cli/extras folder. This can be done by copying this script to /etc/bash_completion.d/ or /usr/local/etc/bash_completion.d/. Before this, you need to have bash-completion enabled/installed. Refer to this guide for the instructions.

When done with the above, go to the extras folder and copy and paste the following commands in your terminal :-

 cp ./bash-completion.sh /etc/bash_completion.d/popper.sh

or

cp ./bash-completion.sh /usr/local/etc/bash_completion.d/popper.sh