A human-friendly web interface to the data served by the Team API Server.
You will need Ruby version 2.1.5 or greater and Bundler. You'll also need to set a local environment variable HMAC_KEY
with an HMAC key from the team-api-server.
To run your own local instance at http://localhost:4000
:
$ git clone https://github.com/18F/team-browser.git
$ cd team-browser
$ cp set_hmac_auth.sample.sh set_hmac_auth.sh
$ nano set_hmac_auth.sh # or your favorite editor; set `HMAC_KEY`
$ source set_hmac_auth.sh
$ ./go serve
As above, but also
- Add
config.vm.network "forwarded_port", guest: 4000, host: 4000
to yourVagrantfile
- Run with
./go serve --host 0.0.0.0
- Fork the repo (or just clone it if you're an 18F team member)
- Create your feature branch (
git checkout -b my-new-feature
) - Make your changes and test them via
./go test
- Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Feel free to file an issue or to ping the #hub channel in 18F's Slack with any questions you may have, especially if the current documentation should've addressed your needs, but didn't.
This project is in the worldwide public domain. As stated in CONTRIBUTING:
This project is in the public domain within the United States, and copyright and related rights in the work worldwide are waived through the CC0 1.0 Universal public domain dedication.
All contributions to this project will be released under the CC0 dedication. By submitting a pull request, you are agreeing to comply with this waiver of copyright interest.