Skip to content

Latest commit

 

History

History
75 lines (46 loc) · 1.27 KB

README.md

File metadata and controls

75 lines (46 loc) · 1.27 KB

It uses an pivotal tracker api and does lot of cool stuffs like creating tickets.

Installing the app

pip install pt-cli

Add config file

You can find the token and ids in the tracker dashboard. For PERSON_ID, you might need to inspect json in network tab. Create a file ~/.pt.yml and add the following content.

pt:
  PIVOTAL_TRACKER_API_TOKEN: <token>
  PROJECT_ID: <id>
  PERSON_ID: <id>

About you

pt-cli index

Create stories

pt-cli index

Index view / view all stories

pt-cli index

Show individual story

pt-cli index

Add Comment

pt-cli index

Labels

pt-cli index

Notifications

pt-cli index

Contributing

Installation

$ pip install setup.py

Development

This project includes a number of helpers in the Makefile to streamline common development tasks.

Environment Setup

The following demonstrates setting up and working with a development environment:

### create a virtualenv for development

$ make virtualenv

$ source env/bin/activate


### run pt cli application

$ pt --help


### run pytest / coverage

$ make test