add dash for dashboards boilerpate

This commit is contained in:
MvS 2019-12-05 11:47:00 -08:00
parent 4afbc76543
commit e926c8a03e
9 changed files with 1 additions and 0 deletions

View file

@ -1,41 +0,0 @@
# Awesome Python CLI Boilerplate
A quick boilerplate when creating a new CLI apps/scripts in Python3.
### Install
Create and source a virtual environment:
```
virtualenv venv
source venv/bin/activate
```
Install dependencies:
```
pip install -r requirements.txt
```
Install package:
```
pip install .
```
Test your install with:
```
yourapp --help
```
---
### Development
Create a virtual environment and install the package with an editable option:
```
pip install --editable .
```