{"id":34984783,"url":"https://github.com/fspv/homebrew-apps","last_synced_at":"2026-05-23T19:34:18.736Z","repository":{"id":315940436,"uuid":"1061317244","full_name":"fspv/homebrew-apps","owner":"fspv","description":"Brew apps built by fspv","archived":false,"fork":false,"pushed_at":"2025-10-08T15:44:04.000Z","size":19,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-03-11T16:48:12.356Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fspv.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2025-09-21T17:13:37.000Z","updated_at":"2025-10-08T15:44:08.000Z","dependencies_parsed_at":"2025-09-21T19:42:28.017Z","dependency_job_id":null,"html_url":"https://github.com/fspv/homebrew-apps","commit_stats":null,"previous_names":["fspv/homebrew-apps"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fspv/homebrew-apps","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fspv%2Fhomebrew-apps","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fspv%2Fhomebrew-apps/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fspv%2Fhomebrew-apps/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fspv%2Fhomebrew-apps/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fspv","download_url":"https://codeload.github.com/fspv/homebrew-apps/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fspv%2Fhomebrew-apps/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33410343,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-23T18:09:33.147Z","status":"ssl_error","status_checked_at":"2026-05-23T18:09:31.380Z","response_time":53,"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":[],"created_at":"2025-12-27T01:27:35.881Z","updated_at":"2026-05-23T19:34:18.717Z","avatar_url":"https://github.com/fspv.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Homebrew Apps Tap\n\nThis repository contains Homebrew formulas for custom applications.\n\n## Installation\n\n### Add the tap\n\n```bash\nbrew tap fspv/apps\n```\n\n### Install chef-de-vibe\n\n```bash\nbrew install fspv/apps/chef-de-vibe\n```\n\nOr install directly without adding the tap:\n\n```bash\nbrew install fspv/apps/chef-de-vibe\n```\n\n### Install development version\n\nTo install the latest development version from the master branch:\n\n```bash\nbrew install --HEAD fspv/apps/chef-de-vibe\n```\n\nNote: The HEAD installation builds from source and requires Rust, Node.js, and other build dependencies.\n\n## Available Formulas\n\n### chef-de-vibe\n\nA Rust application with embedded React frontend.\n\n- **Homepage**: https://github.com/fspv/chef-de-vibe\n- **License**: MIT\n- **Platforms**: macOS (Intel \u0026 Apple Silicon), Linux x86_64\n\n## Updating\n\nTo get the latest version of a formula:\n\n```bash\nbrew update\nbrew upgrade fspv/apps/chef-de-vibe\n```\n\n## Uninstallation\n\n```bash\nbrew uninstall chef-de-vibe\nbrew untap fspv/apps  # Optional: remove the tap\n```\n\n## Development\n\n### Automatic Formula Updates\n\nThis tap uses GitHub Actions to automatically update formulas when new releases are published in the source repositories. The workflow:\n\n1. Monitors for new releases in the chef-de-vibe repository\n2. Downloads the pre-built binaries\n3. Calculates SHA256 checksums\n4. Updates the formula\n5. Creates a pull request with the changes\n\n### Manual Update\n\nTo manually trigger a formula update:\n\n1. Go to the [Actions tab](https://github.com/fspv/homebrew-apps/actions)\n2. Select \"Update Formula\" workflow\n3. Click \"Run workflow\"\n4. Optionally specify a version (e.g., `v1.0.0`)\n\n### Testing\n\nThe formulas are automatically tested on:\n- macOS latest (Intel and ARM)\n- Ubuntu latest\n\nTests run on every push and pull request that modifies formulas.\n\n## Troubleshooting\n\n### Installation Issues\n\nIf you encounter issues during installation:\n\n```bash\n# Update Homebrew and retry\nbrew update\nbrew doctor\nbrew install fspv/apps/chef-de-vibe\n```\n\n### Binary Compatibility\n\nThe pre-built binaries are compiled for:\n- macOS Intel (x86_64)\n- macOS Apple Silicon (ARM64)\n- Linux x86_64\n\nFor other platforms, use the `--HEAD` option to build from source.\n\n## Contributing\n\n1. Fork the repository\n2. Create a feature branch\n3. Make your changes\n4. Test locally: `brew install --build-from-source ./Formula/chef-de-vibe.rb`\n5. Submit a pull request\n\n## License\n\nThe formulas in this repository are provided under the same licenses as their respective software packages.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffspv%2Fhomebrew-apps","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffspv%2Fhomebrew-apps","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffspv%2Fhomebrew-apps/lists"}