Skip to content

A weekend Meteor hack to better view and prioritize my Sprintly stories

Notifications You must be signed in to change notification settings

chadokruse/sprintly-visualizer

Repository files navigation

Sprintly visualizer

This was a one-night weekend project to:

  1. Learn more about http calls to a 3rd party API using Meteor

  2. Visualize all my Someday cards tucked away in a Sprintly project I'm working on (my startup, Kyn). Love me some Sprintly, but don't love how they don't take advantage of the full screen width on certain views, particularly the triage view in the Organizer.

This project wouldn't have been possible without the following reference apps/gists:

  1. This gist from nachiket-p demonstrating a basic API call via Meteor.

  2. Meteor-synched-drag from drgorb for the freeform canvas functionality.

You guys are awesome…thanks!

Screenshot

Landing Page

Wishlist:

  1. Add a way to visually connect certain stories (e.g. jsPlumb)
  2. The db isn't hooked up, so as soon as you do a browser refresh your work is destroyed.
  3. The API call is one-way (GET). Would be great to reorder/prioritize and send back to Sprintly. An alternative is to add tags in lieu of ordering and/or move certain stories to backlog.

Getting started

Note: I'm a beginner, and these instructions are intended to help other beginners get up and rolling quickly.

You need to have Node.js and Meteor installed.

Node

I use Homebrew and found this tutorial helpful.

Meteor

Install Meteor:

curl https://install.meteor.com | sh

Install Meteorite:

npm install -g meteorite

Add jQuery UI package:

mrt add jquery-ui

cd into the app

cd what/ever/your/path/is/sprintly-visualizer

Start Meteor

meteor

Open the app in your browser

http://localhost:3000/

Usage

  1. Insert your Sprintly credentials
    These are located in settings.json.example. Be sure to save the new file as settings.json (e.g. remove the "example" extension).
    Note: Here's how to find your API Key.

  2. Load your settings.json file
    meteor --settings settings.json
    Notes: (a) Be sure meteor is not already running. (b) If you're going to deploy this to meteor's free hosting (i.e. yourappname.meteor.com), don't forget to load your settings.json file upon deploy as well: meteor deploy yourappname --password --settings settings.json

And please, make sure you password-protect your site if deploying to meteors servers (that's the --password command while hitting meteor deploy). Otherwise, your Sprintly API key credentials could be exposed.

##Misc Notes

  1. Error handling from Sprintly responses are NOT hooked up yet, so open up console if your app is throwing errors.
  2. Half of the app is for the drag and drop functionality. If you just want to see how the API call is set up without all the additional clutter, revert back to this commit.

Disclaimer

This code is provided "as is" with no warranties. It'll probably break and may expose your api keys and all of your inner-most secrets. Proceed with caution.

License

Sprintly card design copyright (c) Sprint.ly. All else, do with it as you wish, commercial or otherwise.

About

A weekend Meteor hack to better view and prioritize my Sprintly stories

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published