{"id":39663046,"url":"https://github.com/attunehq/attune","last_synced_at":"2026-01-18T09:25:47.612Z","repository":{"id":287633500,"uuid":"964360888","full_name":"attunehq/attune","owner":"attunehq","description":"Faster builds, zero effort.","archived":false,"fork":false,"pushed_at":"2025-11-26T01:56:23.000Z","size":2013,"stargazers_count":204,"open_issues_count":27,"forks_count":7,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-11-28T11:59:28.984Z","etag":null,"topics":["apt","debian-packaging","software-supply-chain-security"],"latest_commit_sha":null,"homepage":"https://attunehq.com","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/attunehq.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":"2025-04-11T05:11:27.000Z","updated_at":"2025-11-26T00:54:42.000Z","dependencies_parsed_at":null,"dependency_job_id":"5e6d6b25-fe41-4ddf-8c34-313ac3c89d3b","html_url":"https://github.com/attunehq/attune","commit_stats":null,"previous_names":["attunehq/attune"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/attunehq/attune","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/attunehq%2Fattune","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/attunehq%2Fattune/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/attunehq%2Fattune/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/attunehq%2Fattune/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/attunehq","download_url":"https://codeload.github.com/attunehq/attune/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/attunehq%2Fattune/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28534159,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T00:39:45.795Z","status":"online","status_checked_at":"2026-01-18T02:00:07.578Z","response_time":98,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["apt","debian-packaging","software-supply-chain-security"],"created_at":"2026-01-18T09:25:47.513Z","updated_at":"2026-01-18T09:25:47.584Z","avatar_url":"https://github.com/attunehq.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Attune\n[![GitHub license](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/attunehq/attune/blob/main/LICENSE)\n\nAttune is a tool for securely publishing and hosting Linux packages.\n\n[Join our Community Slack](https://join.slack.com/t/attunecommunityslack/shared_invite/zt-33fmjoepy-w5HUiI6P44G15QJlvYhQiw) to connect with other users and get help.\n\n- **Flexible deployment:** Deploy a self-hosted package repository, or use our managed cloud infrastructure.\n- **Secure by design:** Attune's CLI does repository index signing locally, so you can own your signing keys without ever exposing them.\n- **Really, really fast:** Attune does incremental repository index rebuilds, so adding and removing packages is really fast.\n\nAttune is available in two editions:\n- **Community Edition:** Free and open source, perfect for individual developers and small teams\n- **Enterprise Edition:** For organizations with advanced security and compliance needs, includes priority support and advanced security features\n\nSee our [pricing page](https://www.attunehq.com/pricing) for a detailed comparison of features between editions.\n\nWe currently support publishing APT (Debian and Ubuntu) repositories, with more [coming soon](https://attunehq.com).\n\n## Installing the CLI\n\nIf you only need the Attune CLI (without setting up the control plane), you can install it directly:\n\n### macOS\n\n```bash\n# Add the Attune Homebrew tap\nbrew tap attunehq/attune\n\n# Install Attune CLI\nbrew install attune\n```\n\n### Linux\n\n```bash\n# Download the latest .deb package from the GitHub releases page:\n# https://github.com/attunehq/attune/releases/latest\n\n# Install using apt\nsudo apt install ./attune_VERSION_linux_amd64.deb\n```\n\n## Quick Start\n\nHere's how to set up an APT repository in about 5 minutes.\n\n### Prerequisites\n\n- **Docker**: Required for running the Attune control plane and required services (PostgreSQL and MinIO)\n- **Rust**: Required for building the Attune CLI\n- **GnuPG** (`gpg`): Required for signing packages\n\n### Setup\n\n```bash\n# 1. Clone the repository\ngit clone https://github.com/attunehq/attune.git\ncd attune\n\n# 2. Set up environment variables\ncp .env.example .env\n# Modify values in .env as needed for your setup\n\n# 3. Start the control plane and supporting services\ndocker compose up -d\n# This starts:\n# - Attune control plane on port 3000\n# - PostgreSQL on port 5432 (default database: attune, default credentials: attune/attune)\n# - MinIO on ports 9000/9001 (default credentials: attuneminio/attuneminio)\n\n# 4. Build and install the CLI\ncargo install --path ./packages/attune\n\n# 5. Generate a GPG key (if you don't already have one)\ngpg --generate-key\n\n# 6. Get the key ID of your secret key\ngpg --list-secret-keys\n# Note the 40 character hexadecimal string next to the `sec` entries\n\n# 7. Create a new repository\nattune apt repo create example.com\n\n# 8. Add a package to your repository\nattune apt pkg add --repo example.com --key-id $YOUR_GPG_KEY_ID $PATH_TO_DEB\n# Replace:\n# - $YOUR_GPG_KEY_ID with your GPG key ID from step 6\n# - $PATH_TO_DEB with the path to your .deb package\n```\n\nFor more detailed setup instructions and configuration options, refer to the [self-hosting guide](./docs/user-guide/self-hosting.md).\n\n## License\n\nAttune is [Apache 2 licensed](./LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fattunehq%2Fattune","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fattunehq%2Fattune","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fattunehq%2Fattune/lists"}