{"id":37215892,"url":"https://github.com/rubiojr/ergs","last_synced_at":"2026-01-15T00:58:08.452Z","repository":{"id":304187699,"uuid":"1016954491","full_name":"rubiojr/ergs","owner":"rubiojr","description":"Datahoarder's Paradise 🌴","archived":false,"fork":false,"pushed_at":"2025-10-04T14:58:01.000Z","size":4293,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-04T15:25:37.890Z","etag":null,"topics":["datahoarder","datasets"],"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/rubiojr.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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-07-09T19:39:06.000Z","updated_at":"2025-10-04T14:58:04.000Z","dependencies_parsed_at":"2025-10-04T15:15:26.348Z","dependency_job_id":"d4db4461-e0f3-4dc3-8e8e-514bda7abdeb","html_url":"https://github.com/rubiojr/ergs","commit_stats":null,"previous_names":["rubiojr/ergs"],"tags_count":29,"template":false,"template_full_name":null,"purl":"pkg:github/rubiojr/ergs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubiojr%2Fergs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubiojr%2Fergs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubiojr%2Fergs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubiojr%2Fergs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rubiojr","download_url":"https://codeload.github.com/rubiojr/ergs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rubiojr%2Fergs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28440986,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-15T00:55:22.719Z","status":"ssl_error","status_checked_at":"2026-01-15T00:55:20.945Z","response_time":107,"last_error":"SSL_read: 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":["datahoarder","datasets"],"created_at":"2026-01-15T00:58:07.712Z","updated_at":"2026-01-15T00:58:08.441Z","avatar_url":"https://github.com/rubiojr.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Ergs - Datahoarder's Paradise](/images/dune-logo-banner.svg)\n\nA flexible data fetching and indexing tool that collects information from various sources and makes it searchable. Perfect for digital packrats who want to hoard and search their data.\n\n\u003e[!INFO]\n\u003eErgs is currently Beta quality, public facing APIs are quickly evolving\n\u003eand currently in flux.\n\n## Quick Start\n\n### 1. Build \u0026 Install\n\nUse [Docker](/docker/DOCKER.md) or build from source:\n\n```bash\ngit clone https://github.com/rubiojr/ergs\ncd ergs\nmake build\n```\n\nOr grab a binary release from https://github.com/rubiojr/ergs/releases.\n\n### 2. Initialize\n```bash\n./ergs init\n```\n\n### 4. Fetch Data\n```bash\n./ergs fetch\n```\n\n### 5. Search Everything\n```bash\n# Search all your data\n./ergs search --query \"language typescript\"\n\n# Search specific datasource\n./ergs search --datasource github --query \"rust\"\n```\n\n### 6. Web Interface\n```bash\n# Start web interface with search and browsing\n./ergs web --port 8080\n\n# Then visit http://localhost:8080\n```\n\n### 7. Run Continuously\n```bash\n# Fetches new data every 30 minutes by default\n./ergs serve\n```\n\n## Available Datasources\n\n### Browser Data\n- **Firefox** - Complete browsing history with full-text search from Firefox's places.sqlite database\n- **Chromium** - Browsing history from Chromium-based browsers (Chrome, Edge, Brave, etc.)\n\n### Code Hosting Platforms\n- **GitHub** - Your GitHub activity, starred repos, and interactions\n- **Codeberg** - Codeberg activity and repository events\n\n### News \u0026 Media\n- **HackerNews** - Stories, comments, jobs, and polls from Hacker News\n- **RSS** - Articles from RSS/Atom feeds (blogs, news sites, etc.)\n- **RTVE** - TV show episodes from RTVE (Spanish public broadcasting)\n\n### Development Tools\n- **Zed Threads** - AI conversation threads from Zed editor\n\n### External Data Import\n- **Importer** - HTTP API for importing blocks from external sources and custom scripts\n\n### Utilities\n- **Gas Stations** - Local gas station prices and info\n- **Datadis** - Electricity consumption data from Datadis (Spanish electricity data platform)\n- **Timestamp** - Simple timestamp logging (useful for testing)\n\n## Common Commands\n\n```bash\n# See what datasources you have\n./ergs datasource list\n\n# Check your data stats\n./ergs stats\n\n# List recent items from a datasource\n./ergs list --datasource github --limit 5\n\n# Start web interface for browsing and search\n./ergs web\n```\n\n## Configuration\n\nYour config lives at `~/.config/ergs/config.toml`. You can edit it directly or use the CLI commands. Each datasource gets its own SQLite database with full-text search.\n\n## Need Help?\n\n- Check the [datasource documentation](docs/datasources/) for detailed setup instructions\n- See [docs/web-interface.md](docs/web-interface.md) for web interface and API documentation\n- See [docs/queries.md](docs/queries.md) for FTS5 search syntax and examples\n- See [docs/datasource.md](docs/datasource.md) if you want to create your own datasources\n- Run `./ergs --help` for all available commands\n\nStart hoarding! 📦\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frubiojr%2Fergs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frubiojr%2Fergs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frubiojr%2Fergs/lists"}