A simple build monitor to display the status of Visual Studio Online builds and releases.
-
Find your account name and project name from your Visual Studio Online url:
https://{VSO_ACCOUNT_NAME}.visualstudio.com/{VSO_PROJECT_NAME}
-
Obtain a personal access token for Visual Studio Online with the following permissions boxes ticked:
- Build (read) for displaying status of builds
- Release (read) for displaying status of releases
- Code (read) for displaying commit messages (optional)
-
Install Java
-
Download the release jar file
-
Run app:
java -jar build-mon-0.2.0-standalone.jar "{VSO_ACCOUNT_NAME}" "{VSO_PROJECT_NAME}" "{VSO_PERSONAL_ACCESS_TOKEN}"
-
Visit localhost:3000
-
Install Leiningen
-
Clone this repository
-
Run app:
lein run "{VSO_ACCOUNT_NAME}" "{VSO_PROJECT_NAME}" "{VSO_PERSONAL_ACCESS_TOKEN}"
-
Visit localhost:3000
Run on Heroku
A Procfile is included for simple deployment to Heroku.
-
Create a new app in Heroku.
-
Push this repository to it.
-
Set the Config Variables in the app settings:
VSO_ACCOUNT_NAME VSO_PROJECT_NAME VSO_PERSONAL_ACCESS_TOKEN
Run tests:
lein midje [:autotest]
Run code analysis and tests:
lein test
- reinstate error handling on front end (was removed from
refresh.js
) - VSO api sometimes goes down and it is useful to get some feedback in the browser