{"id":49098331,"url":"https://github.com/edgevector/fold_db","last_synced_at":"2026-05-01T01:03:54.889Z","repository":{"id":280709364,"uuid":"926744069","full_name":"EdgeVector/fold_db","owner":"EdgeVector","description":"A database for data sovereignty","archived":false,"fork":false,"pushed_at":"2026-04-14T02:20:20.000Z","size":17191,"stargazers_count":3,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"mainline","last_synced_at":"2026-04-14T02:24:03.259Z","etag":null,"topics":["database"],"latest_commit_sha":null,"homepage":"http://www.folddb.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/EdgeVector.png","metadata":{"files":{"readme":".github/README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE-APACHE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"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":["EdgeVector"],"patreon":"https://patreon.com/EuclidCodes?utm_medium=unknown\u0026utm_source=join_link\u0026utm_campaign=creatorshare_creator\u0026utm_content=copyLink"}},"created_at":"2025-02-03T19:34:20.000Z","updated_at":"2026-04-14T00:19:43.000Z","dependencies_parsed_at":"2025-04-03T23:19:51.450Z","dependency_job_id":"878f2dfd-2baa-404d-af38-88ddbc8f5d06","html_url":"https://github.com/EdgeVector/fold_db","commit_stats":null,"previous_names":["shiba4life/fold_db","edgevector/fold_db"],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/EdgeVector/fold_db","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EdgeVector%2Ffold_db","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EdgeVector%2Ffold_db/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EdgeVector%2Ffold_db/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EdgeVector%2Ffold_db/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EdgeVector","download_url":"https://codeload.github.com/EdgeVector/fold_db/tar.gz/refs/heads/mainline","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EdgeVector%2Ffold_db/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32067626,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T21:26:33.338Z","status":"ssl_error","status_checked_at":"2026-04-20T21:26:22.081Z","response_time":94,"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":["database"],"created_at":"2026-04-20T22:01:23.079Z","updated_at":"2026-04-20T22:01:24.186Z","avatar_url":"https://github.com/EdgeVector.png","language":"Rust","funding_links":["https://github.com/sponsors/EdgeVector","https://patreon.com/https://patreon.com/EuclidCodes?utm_medium=unknown\u0026utm_source=join_link\u0026utm_campaign=creatorshare_creator\u0026utm_content=copyLink"],"categories":[],"sub_categories":[],"readme":"# GitHub Actions Configuration\n\n## Quick Setup\n\nTo enable AI query testing in the CI workflow, configure these secrets:\n\n### Required Secrets\n\nGo to: **Repository Settings** → **Secrets and variables** → **Actions** → **New repository secret**\n\n#### For OpenRouter (Recommended):\n```\nName: AI_PROVIDER\nValue: openrouter\n\nName: FOLD_OPENROUTER_API_KEY\nValue: \u003cyour-openrouter-api-key\u003e\n```\n\n#### For Ollama (Self-hosted):\n```\nName: AI_PROVIDER\nValue: ollama\n\nName: OLLAMA_BASE_URL\nValue: http://your-ollama-server:11434\n```\n\n## What Happens Without Secrets?\n\n⚠️  The AI query workflow test will fail (but other tests still pass)  \n✅ The main CI workflow runs all tests with `cargo test --workspace`  \nℹ️  Only the `test_ai_query_workflow` test requires AI configuration\n\n## Detailed Documentation\n\nSee [GITHUB_ACTIONS_SETUP.md](./GITHUB_ACTIONS_SETUP.md) for:\n- Complete setup instructions\n- Environment variable reference\n- Troubleshooting guide\n- Testing locally\n- Security best practices\n\n## Workflows\n\n| Workflow | Purpose | Trigger | AI Required |\n|----------|---------|---------|-------------|\n| `ci-tests.yml` | Run all tests (Rust + Frontend) | Push/PR | Optional* |\n| `coverage.yml` | Generate code coverage | Push/PR | No |\n| `release.yml` | Build release binaries | Version tags | No |\n\n*AI secrets are optional - if not set, the AI query test will fail but other tests will still pass.\n\n### Release Workflow\n\nThe `release.yml` workflow automatically builds binaries when you push a version tag:\n\n**Platforms:**\n- macOS (Intel x86_64)\n- macOS (Apple Silicon aarch64)\n- Linux (x86_64)\n\n**How to trigger a release:**\n```bash\n# 1. Update version in Cargo.toml\n# 2. Commit changes\ngit add .\ngit commit -m \"Release v0.1.6\"\n\n# 3. Create and push version tag\ngit tag v0.1.6\ngit push origin mainline --tags\n\n# 4. GitHub Actions will automatically:\n#    - Build binaries for all platforms\n#    - Create a GitHub release\n#    - Attach binaries as release assets\n```\n\n**Release binaries are named:**\n- `folddb_server-macos-x86_64-{version}`\n- `folddb_server-macos-aarch64-{version}`\n- `folddb_server-linux-x86_64-{version}`\n\nFor detailed workflow validation and troubleshooting, see [RELEASE_WORKFLOW_VALIDATION.md](./RELEASE_WORKFLOW_VALIDATION.md).\n\n## Getting API Keys\n\n### OpenRouter (Recommended)\n1. Go to https://openrouter.ai\n2. Sign up for an account\n3. Generate an API key\n4. Add credits to your account\n5. Add the key as `FOLD_OPENROUTER_API_KEY` secret\n\n### Ollama (Self-hosted)\n1. Install Ollama: https://ollama.ai\n2. Run Ollama server: `ollama serve`\n3. Ensure it's accessible at a URL\n4. Add the URL as `OLLAMA_BASE_URL` secret\n\n## Support\n\nFor setup help, see the detailed guide: [GITHUB_ACTIONS_SETUP.md](./GITHUB_ACTIONS_SETUP.md)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedgevector%2Ffold_db","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fedgevector%2Ffold_db","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedgevector%2Ffold_db/lists"}