{"id":17062549,"url":"https://github.com/skateman/dev-board","last_synced_at":"2025-04-12T18:35:26.379Z","repository":{"id":87120512,"uuid":"83220378","full_name":"skateman/dev-board","owner":"skateman","description":"A simple developer dashboard that displays open PRs for a GitHub repo","archived":false,"fork":false,"pushed_at":"2017-02-28T14:43:45.000Z","size":24,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-26T12:51:13.977Z","etag":null,"topics":["dashboard","development","rails","ruby"],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/skateman.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-02-26T15:45:32.000Z","updated_at":"2019-07-25T10:24:14.000Z","dependencies_parsed_at":"2023-06-19T18:21:13.850Z","dependency_job_id":null,"html_url":"https://github.com/skateman/dev-board","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skateman%2Fdev-board","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skateman%2Fdev-board/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skateman%2Fdev-board/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/skateman%2Fdev-board/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/skateman","download_url":"https://codeload.github.com/skateman/dev-board/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248615364,"owners_count":21133872,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dashboard","development","rails","ruby"],"created_at":"2024-10-14T10:50:12.679Z","updated_at":"2025-04-12T18:35:26.347Z","avatar_url":"https://github.com/skateman.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Developer Dashboard\n\n[![Dependency Status](https://gemnasium.com/badges/github.com/skateman/dev-board.svg)](https://gemnasium.com/github.com/skateman/dev-board)\n[![Docker Automated build](https://img.shields.io/docker/automated/skateman/dev-board.svg)](https://hub.docker.com/r/skateman/dev-board/)\n\nThe Developer Dashboard is a Rails application that displays open PRs for a preconfigured repository. It has been tailored for my specific needs, therefore, it might be not convenient for anyone else. However, feel free to open PRs or issues containing your idea how to make it better.\n\n![screen shot 2017-02-27 at 17 49 29](https://cloud.githubusercontent.com/assets/1187051/23370483/1dbf0ab4-fd15-11e6-9c5b-0733a4516c55.png)\n\n## Installation\n\n### Docker container\nThe application is packed as an all-in-one [docker container](https://hub.docker.com/r/skateman/dev-board/), that can be started by the following command:\n\n```sh\ndocker run -p 3000:3000 \\\n  -e SECRET_KEY_BASE=\"\" \\\n  -e GITHUB_REPO=\"\"     \\\n  -e GITHUB_USER=\"\"     \\\n  -e GITHUB_PASS=\"\"     \\\n  skateman/dev-board\n```\n\nThe application is configured to listen on port 3000, but this can be [routed to any port](https://docs.docker.com/engine/reference/commandline/run/#/publish-or-expose-port--p---expose) on your local machine. The `SECRET_KEY_BASE` variable is required by Rails and its content has to be a random unique string, you can call `rake secret` from any rails application to generate one. The `GITHUB_` prefixed variables don't need any further explanation, you can generate personal access tokens [on your GitHub settings page](https://github.com/settings/tokens). It is possible to use the application without setting the login credentials, but note that GitHub has more strict [rate limits](https://developer.github.com/v3/#rate-limiting) for unauthorized users.\n\n### Standalone\nTo run the application outside the container, you will require the following tools:\n* Ruby v2.2.2 or newer\n* All the dependencies of Rails v5.0.1\n* Redis runnin on localhost\n\nAfter checking out the repository, simply type `bin/setup` in the application's directory to set up all the dependencies. You will have to update the `config/secrets.yml` file with your GitHub credentials and with the `secret_key_base` that can be generated using `bin/rails secret`.\n\nTo start both the Rails application and the single-threaded Sidekiq worker, you can use the well known `bin/rails s` and `bin/bundle exec sidekiq` commands. If you don't want to bother with two commands, you can use [Foreman](http://ddollar.github.io/foreman/) by typing:\n```sh\nbin/bundle exec foreman start\n```\n\nPlease note that when running outside a container, you will have to create the initial sidekiq job from a Rails console:\n\n```ruby\nFetchJob.perform_later\n```\n\n## Usage\nSimply point your browser at http://localhost:3000. Depending on the repo you will have to wait a few minutes for the initial job to finish. The page is configured to refresh itself in every 120 seconds.\n\n## Contributing\nBug reports and pull requests are welcome on GitHub at https://github.com/skateman/dev-board.\n\n## License\nThe gem is available as open source under the terms of the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskateman%2Fdev-board","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fskateman%2Fdev-board","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskateman%2Fdev-board/lists"}