{"id":42675363,"url":"https://github.com/drewhammond/chefbrowser","last_synced_at":"2026-01-29T11:28:46.720Z","repository":{"id":59046569,"uuid":"528687144","full_name":"drewhammond/chefbrowser","owner":"drewhammond","description":"Web application to view the contents of a chef (or cinc) server","archived":false,"fork":false,"pushed_at":"2025-11-30T02:19:01.000Z","size":593,"stargazers_count":23,"open_issues_count":29,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-02T07:15:11.987Z","etag":null,"topics":["chef","chef-server","cinc"],"latest_commit_sha":null,"homepage":"","language":"Go","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/drewhammond.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-08-25T04:00:03.000Z","updated_at":"2025-11-30T02:18:04.000Z","dependencies_parsed_at":"2023-12-15T00:22:57.466Z","dependency_job_id":"1bd8bcc0-6eb4-4722-a600-613c3ae09fde","html_url":"https://github.com/drewhammond/chefbrowser","commit_stats":null,"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/drewhammond/chefbrowser","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drewhammond%2Fchefbrowser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drewhammond%2Fchefbrowser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drewhammond%2Fchefbrowser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drewhammond%2Fchefbrowser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/drewhammond","download_url":"https://codeload.github.com/drewhammond/chefbrowser/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drewhammond%2Fchefbrowser/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28876677,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T10:31:27.438Z","status":"ssl_error","status_checked_at":"2026-01-29T10:31:01.017Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["chef","chef-server","cinc"],"created_at":"2026-01-29T11:28:45.877Z","updated_at":"2026-01-29T11:28:46.711Z","avatar_url":"https://github.com/drewhammond.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"![GitHub](https://img.shields.io/github/license/drewhammond/chefbrowser)\n[![Go Report Card](https://goreportcard.com/badge/github.com/drewhammond/chefbrowser)](https://goreportcard.com/report/github.com/drewhammond/chefbrowser)\n[![go-test](https://github.com/drewhammond/chefbrowser/actions/workflows/go-test.yml/badge.svg)](https://github.com/drewhammond/chefbrowser/actions/workflows/go-test.yml)\n\n# Chef Browser (2024)\n\nA simple read-only web application for browsing objects on a Chef Infra Server (or [Cinc Server](https://cinc.sh/)).\n\nInspiration taken from the abandoned [chef-browser](https://github.com/3ofcoins/chef-browser) ruby/sinatra application.\n\n## Installation\n\n### Configuration\n\nAll configurable settings are documented in [`defaults.ini`](defaults.ini).\n\nTwo methods of installation are planned:\n\n1. Traditional deployment using systemd\n2. Docker container\n\n```shell\ndocker run -d \\\n  -p 8080:8080 \\\n  -v /path/to/example.pem:/example.pem:ro \\\n  -v /path/to/config.ini:/config.ini:ro \\\n  drewhammond/chefbrowser:latest --config /config.ini\n```\n\n## Usage\n\n```\nchefbrowser is a read-only web application for viewing\nChef Infra Server (or Cinc Server) resources\n\nUsage:\n  chefbrowser --config /path/to/config.ini [flags]\n\nFlags:\n      --config string   path to config file\n  -h, --help            help for chefbrowser\n  -v, --version         version for chefbrowser\n```\n\n### Adding custom links to node pages\n\nYou can add custom links to node pages to easily pivot between internal systems.\n\nLinks can be static or templated using node attributes (in the `title` and `href` fields) by enclosing the desired\nattribute key between `{{` `}}`, for example:\n\n- `{{fqdn}}`\n- `{{ipaddress}}`\n- `{{ec2.instance_id}}`\n\nNested attributes should use dots as delimiters. If you reference a node attribute that does not exist, it will be replaced by `undefined` in the final URL.\n\n**Config:**\n\n```ini\n[custom_links.nodes.0]\ntitle = \"Open Example Dashboard (Grafana)\"\nhref = \"https://grafana.example.com/d/000001/example-dashboard?var-hostname={{fqdn}}\"\nnew_tab = true\n\n[custom_links.nodes.1]\ntitle = \"Another Internal Resource (ID: {{ec2.instance_id}})\"\nhref = \"https://docs.example.com/foo/?instance-id={{ec2.instance_id}}\"\n```\n\n\n## Contributing\n\nThis project is in its infancy so any and all contributes are welcome! If you're looking for something to work on,\nI think the frontend could use some love.\n\n## Development\n\nSet `app_mode = development` in your config file to enable developer mode. This mode does the following:\n\n- Go Templates are loaded from the file system instead of embedded into the backend. They can be changed without\n  recompiling.\n- CSS/JS links in the HTML are updated to point to the local Vite dev server for live reloading.\n\nInstall UI dependencies and start the frontend development server:\n\n```shell\nmake start-ui-dev\n```\n\nBuild and start the backend server:\n\n```shell\nmake build-backend\n./dist/chefbrowser --config development.ini\n```\n\nAccess the dev server at http://localhost:8080.\n\nCSS/JS changes will trigger automatic rebuilds\nas long as you have the frontend development server running.\n\n\u003e Note: Go changes will not be live reloaded. Rebuild backend for changes to take effect.\n\n## TODO\n\n- [ ] Test suite\n- [ ] Drop Cobra (do we need it?)\n- [ ] Support browsing multiple chef organizations\n- [ ] Windows support? (if you are interested, please file an issue!)\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdrewhammond%2Fchefbrowser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdrewhammond%2Fchefbrowser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdrewhammond%2Fchefbrowser/lists"}