Add labels to your repository with the following pattern
Title == column header
Example:
1 - Backlog
2 - Ready
3 - Working
4 - Done
The number represents the index of the column and the will be the column header
To move a card with a commit message add "push GH-#" anywhere in your commit message
Other supported key words
push GH-#
pushed GH-#
move GH-#
moves GH-#
Make sure you create a hook for the Repository on the home page. Only click the button once (known defect)- Currently you can only move one card per commit message (will fix soon)
Add labels to your repository with the following pattern
Link <=> username/repo
Example:
Link <=> rauhryan/ghee
For help distiguishing cards add a custom color to label and huboard will add a border to issues belonging to the linked board
creates multiple post-receive hooks, only click once. You can manually delete the hook from the admin panel on github- Milestones reordering takes a few seconds and I don't have a loading screen on there yet so give it a few seconds
- Milestones reordering will change the due date of your milestone. (currently the only way to order then)
- commit message that "push GH-#" past the last column close the issue
Install Pow from pow.cx
Configure your app for pow:
cd ~/.pow
ln -s /path/to/huboard
Sinatra doesn't automatically reload changes to your app, so tell Pow to restart on every request:
cd /path/to/huboard
mkdir tmp
touch tmp/always_restart.txt
cp .rvmrc.sample .rvmrc
Edit .rvmrc
to specify your ruby version/gemset
Recommend MRI 1.9.2, to match the bamboo stack on heroku
gem install bundler -v 1.1.rc
bundle install
Go to https://github.com/account/applications and register your application to get the application keys needed for OAuth.
- URL:
http://huboard.dev
- Callback:
http://huboard.dev/auth/github/callback
cp .settings.sample .settings
Edit .settings
to set the Client ID and Client Secret provided by
Github when you registered the application.
Open your browser to http://huboard.dev/board
Sign up on Heroku if you don't have an account, and install the heroku gem:
[sudo] gem install heroku
git clone https://github.com/rauhryan/huboard.git
cd huboard
bundle install
heroku app:create ---stack cedar
or, if you'd prefer to name your app yourself:
heroku app:create <your-app-name> --stack cedar
Go to https://github.com/account/applications and register your application to get the application keys needed for OAuth.
- URL:
http://<your-app-name>.herokuapp.com
- Callback:
http://<your-app-name>.herokuapp.com/auth/github/callback
Create a Github team that will be used by Huboard, or use an existing one.
Make note of the team ID. You can see it in the URL when editing the team.
If you get bounced by SecuroCat, you should first check your team ID.
Now you'll need to setup some environment variables on Heroku.
Customize your values and run the following from your project root:
heroku config:add \
GITHUB_CLIENT_ID='<your-github-oauth-client>' \
GITHUB_SECRET='<your-github-oauth-secret>' \
SECRET_KEY='<your-random-secret-key>' \
SESSION_SECRET='<your-complex-session-secret>' \
TEAM_ID='<your-github-team-id>'
git push heroku master
The MIT License (MIT) Copyright (c) 2012 Ryan Rauh
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.