{"id":48403721,"url":"https://github.com/refringe/anchor-lfs","last_synced_at":"2026-04-06T02:25:26.970Z","repository":{"id":343333061,"uuid":"1174138475","full_name":"refringe/anchor-lfs","owner":"refringe","description":"A lightweight, standalone Git LFS server written in Go that authenticates users against GitHub organisation and repository permissions.","archived":false,"fork":false,"pushed_at":"2026-03-24T18:40:55.000Z","size":122,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-25T23:54:27.153Z","etag":null,"topics":["git","git-lfs","git-lfs-server","lfs"],"latest_commit_sha":null,"homepage":"https://github.com/refringe/anchor-lfs","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/refringe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":".github/SECURITY.md","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},"funding":{"github":"refringe","ko_fi":"refringe"}},"created_at":"2026-03-06T05:31:00.000Z","updated_at":"2026-03-24T18:40:58.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/refringe/anchor-lfs","commit_stats":null,"previous_names":["refringe/anchor-lfs"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/refringe/anchor-lfs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/refringe%2Fanchor-lfs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/refringe%2Fanchor-lfs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/refringe%2Fanchor-lfs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/refringe%2Fanchor-lfs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/refringe","download_url":"https://codeload.github.com/refringe/anchor-lfs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/refringe%2Fanchor-lfs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31457040,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T21:22:52.476Z","status":"online","status_checked_at":"2026-04-06T02:00:07.287Z","response_time":112,"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":["git","git-lfs","git-lfs-server","lfs"],"created_at":"2026-04-06T02:25:26.478Z","updated_at":"2026-04-06T02:25:26.961Z","avatar_url":"https://github.com/refringe.png","language":"Go","funding_links":["https://github.com/sponsors/refringe","https://ko-fi.com/refringe"],"categories":[],"sub_categories":[],"readme":"# Anchor LFS\n\nA lightweight, standalone [Git LFS](https://git-lfs.com/) server written in Go that authenticates users against GitHub organisation and repository permissions.\n\n## Features\n\n- Full [Git LFS Batch API](https://github.com/git-lfs/git-lfs/blob/main/docs/api/batch.md) compliance\n- [File locking API](https://github.com/git-lfs/git-lfs/blob/main/docs/api/locking.md) for coordinating concurrent edits\n- GitHub-based authentication (checks pull/push permissions on your repo)\n- Multiple repository endpoints from a single instance\n- Local filesystem or S3-compatible object storage (AWS S3, Cloudflare R2, MinIO, etc.)\n- HMAC-signed transfer URLs with configurable expiration\n- SHA-256 integrity verification on upload\n- Configurable per-endpoint visibility (public/private)\n- Per-IP rate limiting with configurable token bucket\n- Docker-first deployment\n\n## Quick Start\n\n### Docker\n\n```bash\ncp config.toml.example config.toml\n# Edit config.toml with your endpoints, then:\ndocker compose up -d\n```\n\n### From Source\n\n```bash\n# Build\nmake build\n\n# Edit config.toml, then run:\n./bin/anchor-lfs\n```\n\n## Documentation\n\nFull documentation is available on the **[Wiki](https://github.com/refringe/anchor-lfs/wiki)**:\n\n- **[Installation](https://github.com/refringe/anchor-lfs/wiki/Installation):** Building from source and system requirements\n- **[Docker](https://github.com/refringe/anchor-lfs/wiki/Docker):** Container deployment with Docker Compose\n- **[Configuration](https://github.com/refringe/anchor-lfs/wiki/Configuration):** All global options, endpoints, and environment variables\n- **[Storage Backends](https://github.com/refringe/anchor-lfs/wiki/Storage-Backends):** Local filesystem and S3-compatible storage setup\n- **[Authentication](https://github.com/refringe/anchor-lfs/wiki/Authentication):** GitHub and GitHub Enterprise authentication\n- **[Git LFS Client Setup](https://github.com/refringe/anchor-lfs/wiki/Git-LFS-Client-Setup):** Configuring your Git client\n- **[File Locking](https://github.com/refringe/anchor-lfs/wiki/File-Locking):** Coordinating concurrent edits\n- **[Reverse Proxy](https://github.com/refringe/anchor-lfs/wiki/Reverse-Proxy):** Running behind nginx, Caddy, or Traefik\n- **[Security](https://github.com/refringe/anchor-lfs/wiki/Security):** Security model and best practices\n- **[API Reference](https://github.com/refringe/anchor-lfs/wiki/API-Reference):** Endpoint routes and protocol details\n- **[Troubleshooting](https://github.com/refringe/anchor-lfs/wiki/Troubleshooting):** Common issues and solutions\n\n## Development\n\n```bash\nmake build        # Compile binary to bin/anchor-lfs\nmake run          # Build and run\nmake test         # Run tests with race detector\nmake test-cover   # Run tests with coverage report\nmake lint         # Run golangci-lint\nmake fmt          # Format code\nmake vet          # Run go vet\nmake vulncheck    # Vulnerability scan\nmake check        # Run all checks (fmt, lint, vet, vulncheck, test)\nmake tidy         # Run go mod tidy\nmake clean        # Remove build artefacts\n```\n\nDocker commands:\n\n```bash\nmake docker-build   # Build Docker image\nmake docker-up      # Start containers\nmake docker-down    # Stop containers\nmake docker-logs    # Tail container logs\n```\n\nSee [CONTRIBUTING.md](.github/CONTRIBUTING.md) for details.\n\n## License\n\n[AGPL-3.0](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frefringe%2Fanchor-lfs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frefringe%2Fanchor-lfs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frefringe%2Fanchor-lfs/lists"}