Giter Site home page Giter Site logo

pombredanne / django-trello-freckle-sprints Goto Github PK

View Code? Open in Web Editor NEW

This project forked from bitlabstudio/django-trello-freckle-sprints

0.0 1.0 0.0 98 KB

A reusable Django app that creates burndown charts based on Trello boards and Freckle entries.

License: MIT License

Makefile 0.83% Python 71.96% JavaScript 1.65% HTML 25.56%

django-trello-freckle-sprints's Introduction

Django Trello Freckle Sprints

A reusable Django app that helps connection Freckle time entries with Trello cards.

On Freckle, when you track time that has been spent on a certain card, just add cXXX to the entry description, where XXX is the card-ID from Trello (you can see that in the URL when you open a card).

For more information, see chapter Usage below.

Installation

To get the latest stable release from PyPi

pip install django-trello-freckle-sprints

To get the latest commit from GitHub

pip install -e git+git://github.com/bitmazk/django-trello-freckle-sprints.git#egg=sprints

Add sprints to your INSTALLED_APPS

INSTALLED_APPS = (
    ...,
    'sprints',
)

Add the sprints URLs to your urls.py

urlpatterns = [
    url(r'^sprints/', include('sprints.urls')),
]

Settings

TRELLO_DEVELOPER_KEY

Set this to your [Trello developer key](https://trello.com/1/appKey/generate).

TRELLO_DEVELOPER_SECRET

Set this to your [Trello developer secret](https://trello.com/1/appKey/generate).

TRELLO_OAUTH_TOKEN

TODO: Describe how to get the tokens

Set this to your oauth token. To obtain your secret you can run ipdb:

from trello.util import create_oauth_token
create_oauth_token(expiration='never', scope='read', key='yourkey', secret='yoursecret')
# follow the instructions and note down your token and secret

TRELLO_OAUTH_TOKEN_SECRET

Set this to your oauth token secret.

FRECKLE_API_TOKEN

Set this to your Freckle API token. You can find it under Settings > API.

FRECKLE_ACCOUNT_NAME

Set this to your Freckle account name. This is the subdomain you use when logging into Freckle.

Usage

Sprint planning

To get an overview over your current backlog, visit /sprints/backlog/. Enter the Trello board ID, the lists numbers that contain your backlog and your hourly rate.

You will see a table that shows the estimated time and cost for each card in the selected lists. The total will give you an idea about how expensive the whole project will be in total, given the current feature scope.

In order to plan your next sprint, enable the checkboxes next to each card until the selected total matches the budget or hours that you can spend on the sprint.

Sprint overview

To get an overview over a sprint, visit /sprints/sprint/.

TODO: Explain more

Contribute

If you want to contribute to this project, please perform the following steps

# Fork this repository
# Clone your fork
mkvirtualenv -p python2.7 django-trello-freckle-sprints
make develop

git co -b feature_branch master
# Implement your feature and tests
git add . && git commit
git push -u origin feature_branch
# Send us a pull request for your feature branch

django-trello-freckle-sprints's People

Contributors

mbrochh avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.