Git Product home page Git Product logo

trelloq's Introduction

Trelloq

  • Query your trello board like a relational database

Compile and create dist file

sbt compile dist

Generating trello credentials

https://trello.com/1/appKey/generate

Request a token granting read-only access forever:

https://trello.com/1/authorize?key=substitutewithyourapplicationkey&name=My+Application&expiration=never&response_type=token

Examples

Count cards

./trelloq mytoken mykey myboardId "select count(*) from card"

Display list ids and names

./trelloq mytoken mykey myboardId "select id, name from list"

Count card with BUG label created after some day

./trelloq mytoken mykey myboardId "select count(*) from card as card
      join card_label as card_label on card.id = card_label.idCard
      join label as label on label.id = card_label.idLabel 
      where label.name = 'BUG' and card.created > '2017-12-24'" 

trelloq's People

Contributors

rafaelpsouza avatar

Stargazers

Humberto Streb avatar

Watchers

 avatar

trelloq's Issues

Board data cache

  • Persist database data for sometime (30 minutes?)
  • Save it on configuration dir ~/.trelloq
  • CLI option --no-cache
  • CLI option --clean-cache

Installer

Create an installer to run trelloq from command line

V1 Readme

Complete readme for v1 version

  • Install
  • Configure
  • Usage
  • ER Diagram
  • Examples

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.