{"id":51312346,"url":"https://github.com/boundarylogic/privaci","last_synced_at":"2026-07-01T05:01:04.071Z","repository":{"id":365286553,"uuid":"1271402426","full_name":"BoundaryLogic/privaci","owner":"BoundaryLogic","description":"In-VPC PostgreSQL data-masking engine — stream production replicas into safe, FK-intact staging databases. Deterministic, auditable, ELv2.","archived":false,"fork":false,"pushed_at":"2026-06-24T19:20:20.000Z","size":1665,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-24T21:07:43.573Z","etag":null,"topics":["anonymization","data-masking","database","devops","docker","pii","postgresql","privacy","python","security"],"latest_commit_sha":null,"homepage":"https://boundarylogic.io","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BoundaryLogic.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2026-06-16T16:17:31.000Z","updated_at":"2026-06-24T19:20:36.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/BoundaryLogic/privaci","commit_stats":null,"previous_names":["boundarylogic/privaci"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/BoundaryLogic/privaci","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BoundaryLogic%2Fprivaci","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BoundaryLogic%2Fprivaci/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BoundaryLogic%2Fprivaci/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BoundaryLogic%2Fprivaci/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BoundaryLogic","download_url":"https://codeload.github.com/BoundaryLogic/privaci/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BoundaryLogic%2Fprivaci/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34993438,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-01T02:00:05.325Z","response_time":130,"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":["anonymization","data-masking","database","devops","docker","pii","postgresql","privacy","python","security"],"created_at":"2026-07-01T05:00:48.666Z","updated_at":"2026-07-01T05:01:04.062Z","avatar_url":"https://github.com/BoundaryLogic.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PrivaCI\n\n**One command. Sanitized staging data. No data leaves your VPC.**\n\nPrivaCI is a stateless batch engine that reads from a PostgreSQL source\n(typically a production replica), masks PII with a three-tier pipeline, and\nwrites realistic synthetic data to a staging database with referential\nintegrity preserved.\n\n## Prerequisites\n\n- Python **3.12+**, or the official container image\n  (`ghcr.io/boundarylogic/privaci`)\n- A PostgreSQL **source** (typically a production replica) and an empty\n  **target** database\n\n## Quickstart\n\n**Fastest path** — self-contained evaluation stack (~60 s):\n\n```bash\nexport ANONYMIZATION_SALT=\"$(openssl rand -hex 32)\"\nmake eval-up\n```\n\nSee the [quickstart](https://docs.boundarylogic.io/quickstart/) for the full walkthrough.\n\n**Your own databases:**\n\n```bash\npip install -e .\nprivaci gen-salt \u003e .privaci-salt \u0026\u0026 chmod 600 .privaci-salt\nexport ANONYMIZATION_SALT=$(cat .privaci-salt)\nexport SOURCE_DB_URL=postgresql://user:pass@source-host:5432/app\nexport TARGET_DB_URL=postgresql://user:pass@target-host:5432/staging\n\nprivaci validate \u0026\u0026 privaci dry-run \u0026\u0026 privaci run \u0026\u0026 privaci verify\n```\n\nBrowse the docs site locally: `pip install -e \".[dev]\" \u0026\u0026 make docs-serve`\n\n## Documentation\n\nStart with the [documentation site](https://docs.boundarylogic.io/) or\n[quickstart](https://docs.boundarylogic.io/quickstart/).\nKey pages:\n\n**Using PrivaCI**\n\n- [CLI reference](https://docs.boundarylogic.io/cli-reference/) — every command, its options, and examples\n- [Configuration reference](https://docs.boundarylogic.io/configuration/) — the `mask-rules.yaml` format\n- [Error codes](https://docs.boundarylogic.io/error-codes/) — exit codes and message format\n- [State \u0026 audit schema](https://docs.boundarylogic.io/state-schema/) — what runs write to `_privaci`\n- [Extending PrivaCI](https://docs.boundarylogic.io/extending-privaci/) — the plugin contract model\n\n**Developing PrivaCI**\n\n- [Local development \u0026 testing](https://docs.boundarylogic.io/local-development/)\n- [Test fixtures — MedicalHelpDesk Corp](https://docs.boundarylogic.io/test-fixtures/)\n- [Architecture decision records](https://docs.boundarylogic.io/adr/)\n\n## License\n\nThe engine is licensed under the [Elastic License 2.0](LICENSE). Optional\npaid features ship as a separate plugin layer via the\n[plugin contracts](https://docs.boundarylogic.io/extending-privaci/).\n\n## Commercial\n\nOptional paid capabilities — signed compliance reports, schema-drift detection,\nFK-aware subsetting, JSONB path masking, and more — ship as a separate plugin\nlayer on top of this engine, still entirely in your VPC. Learn more at\n[BoundaryLogic](https://boundarylogic.io/commercial).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboundarylogic%2Fprivaci","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fboundarylogic%2Fprivaci","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboundarylogic%2Fprivaci/lists"}