{"id":19061435,"url":"https://github.com/rouanw/build-window","last_synced_at":"2025-04-24T07:25:36.857Z","repository":{"id":48773652,"uuid":"48361882","full_name":"rouanw/build-window","owner":"rouanw","description":"Information radiator for the health of your CI builds","archived":false,"fork":false,"pushed_at":"2023-03-16T12:03:47.000Z","size":458,"stargazers_count":58,"open_issues_count":2,"forks_count":27,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-30T08:07:48.736Z","etag":null,"topics":["continuous-integration","dashboard","dashing"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/rouanw.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":"2015-12-21T09:07:21.000Z","updated_at":"2024-02-15T09:32:05.000Z","dependencies_parsed_at":"2024-11-09T00:34:34.167Z","dependency_job_id":null,"html_url":"https://github.com/rouanw/build-window","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/rouanw%2Fbuild-window","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rouanw%2Fbuild-window/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rouanw%2Fbuild-window/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rouanw%2Fbuild-window/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rouanw","download_url":"https://codeload.github.com/rouanw/build-window/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250581506,"owners_count":21453686,"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":["continuous-integration","dashboard","dashing"],"created_at":"2024-11-09T00:21:45.961Z","updated_at":"2025-04-24T07:25:36.824Z","avatar_url":"https://github.com/rouanw.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Build Window\n\n[![Build Status](https://travis-ci.org/rouanw/build-window.svg?branch=master)](https://travis-ci.org/rouanw/build-window)\n[![GitHub license](https://img.shields.io/github/license/rouanw/build-window.svg)](https://github.com/rouanw/build-window/blob/master/LICENSE)\n\nDashboard built using [Smashing](https://smashing.github.io) (formerly Dashing). Currently supports Jenkins, Travis, TeamCity, Bamboo and Go.\n\n## Example\n\n![Screen shot of build window](http://rouanw.github.io/images/build_health_screenshot.png \"Example build dashboard\")\n\n## Getting started\n\nGet the code. It's probably best to fork this repo so you can keep your config in source code, otherwise you can just clone it:\n\n```sh\ngit clone git@github.com:rouanw/build-window.git \u0026\u0026 cd build-window\n```\n\nRun `bundle install`.\n\nEdit `config/builds.json` with the configuration for your builds:\n\n```\n{\n  \"bambooBaseUrl\": \"https://ci.openmrs.org\",\n  \"teamCityBaseUrl\": \"https://teamcity.jetbrains.com\",\n  \"goBaseUrl\":\"https://build.go.cd\",\n  \"jenkinsBaseUrl\": \"https://builds.apache.org\",\n  \"builds\": [\n    {\"id\": \"sinatra/sinatra\", \"server\": \"Travis\"},\n    {\"id\": \"IntelliJIdeaCe_CommunityTestsLinuxJava8\", \"server\": \"TeamCity\"},\n    {\"id\": \"Lucene-Solr-Maven-master\", \"server\": \"Jenkins\"},\n    {\"id\": \"BB-BDB\", \"server\": \"Bamboo\"},\n    {\"id\": \"build-linux\", \"server\": \"Go\"}\n  ]\n}\n```\n\nRun `smashing start`.\n\nRuns at `http://localhost:3030/builds` by default.\n\nRun `smashing start -d -p 3031` to run it as a daemon and to specify the port. You can stop the daemon with `smashing stop`.\n\nSee https://github.com/Smashing/smashing/wiki for more details.\n\n### Authentication\n\nPlace your API credentials in a `.env` file at the root of the project. (Please note that authentication is currently only supported for Go CD, Jenkins and TeamCity.) Example:\n\n#### Go\n\n```\nGO_USER=view\nGO_PASSWORD=password\n```\n\n#### Jenkins\n\n```\nJENKINS_USER=user\nJENKINS_TOKEN=password\n```\n\n#### TeamCity\n\n    TEAM_CITY_USER=user\n    TEAM_CITY_PASSWORD=password\n\n## Different Base URLs\n\nIf you have multiple build servers of the same type you'd like to keep an eye on you can specify the `baseUrl` for each build:\n\n```json\n{\n  \"builds\": [\n    {\"id\": \"Lucene-Solr-Maven-master\", \"server\": \"Jenkins\", \"baseUrl\": \"https://builds.apache.org\"}\n  ]\n}\n```\n\nPlease note that this is currently only supported for Jenkins, Go and Bamboo.\n\n## Docker support\n\nYou can spin up a Docker container with build-window by running:\n\n`docker-compose up -d`\n\nThe application will be ready at `http://localhost:3030` (Linux) or at `http://\u003cDOCKER_HOST_IP\u003e:3030` (Windows/OS X).\n\nYou can also build the image and run a container separately, but [Docker Compose](https://docs.docker.com/compose/install/) makes this process much simpler.\n\n## Contributing\n\nPull requests welcome. Run the tests with `rspec`.\n\n## Contributions\n\nThanks to Max Lincoln ([@maxlinc](https://github.com/maxlinc)) for coming up with the name __Build Window__.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frouanw%2Fbuild-window","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frouanw%2Fbuild-window","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frouanw%2Fbuild-window/lists"}