{"id":16678687,"url":"https://github.com/dsietz/daas-sdk","last_synced_at":"2025-04-05T02:42:26.445Z","repository":{"id":45344089,"uuid":"226104053","full_name":"dsietz/daas-sdk","owner":"dsietz","description":"Software Development Kit for building out systems that follow the DaaS pattern","archived":false,"fork":false,"pushed_at":"2021-12-19T18:22:05.000Z","size":2015,"stargazers_count":1,"open_issues_count":9,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-11T18:05:38.860Z","etag":null,"topics":["daas","daas-pattern","development-kit","pbd","privacy","privacy-by-design","rust","rust-lang","sdk"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dsietz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-12-05T13:04:29.000Z","updated_at":"2022-04-02T15:48:50.000Z","dependencies_parsed_at":"2022-08-29T16:41:47.187Z","dependency_job_id":null,"html_url":"https://github.com/dsietz/daas-sdk","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsietz%2Fdaas-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsietz%2Fdaas-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsietz%2Fdaas-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dsietz%2Fdaas-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dsietz","download_url":"https://codeload.github.com/dsietz/daas-sdk/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247280177,"owners_count":20912965,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["daas","daas-pattern","development-kit","pbd","privacy","privacy-by-design","rust","rust-lang","sdk"],"created_at":"2024-10-12T13:30:14.445Z","updated_at":"2025-04-05T02:42:26.427Z","avatar_url":"https://github.com/dsietz.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n[![Coverage Status](https://coveralls.io/repos/github/dsietz/daas-sdk/badge.svg?branch=master)](https://coveralls.io/github/dsietz/daas-sdk?branch=master)\n[![Discussions](https://img.shields.io/github/discussions/dsietz/daas-sdk)](https://github.com/dsietz/daas-sdk/discussions)\n[![Docs.rs](https://docs.rs/daas/badge.svg)](https://docs.rs/daas)\n\nLinux: [![Build Status](https://github.com/dsietz/daas-sdk/actions/workflows/master.yaml/badge.svg)](https://github.com/dsietz/daas-sdk/actions/workflows/master.yaml)\nWindows: [![Build status](https://ci.appveyor.com/api/projects/status/ws0gwwlr2hgiqsiv/branch/master?svg=true)](https://ci.appveyor.com/project/dsietz/daas-sdk)\n\n# Data as a Service (DaaS) SDK\n\nFor software development teams who implement the [Data as a Service (DaaS)](https://github.com/dsietz/daas) pattern and follow the practice of [Privacy by Design (PbD)](https://github.com/dsietz/pbd), this DaaS SDK provides enablers to help you easily and transparently applying best practices. Unlike other solutions, this SDK bridges the microservice based DaaS architecture pattern with Data Privacy strategies to provide a complete tool kit and saves developers time from having to search, derive, or piece together disparate solutions.\n\n---\n\n**Table of Contents**\n- [Data as a Service (DaaS) SDK](#data-as-a-service-daas-sdk)\n  - [What's New](#whats-new)\n  - [Features](#features)\n  - [Examples](#examples)\n      - [Starting the DaaS listening Service](#starting-the-daas-listening-service)\n      - [Starting the DaaS Genesis Processor](#starting-the-daas-genesis-processor)\n      - [Starting the Order Clothing Processor](#starting-the-order-clothing-processor)\n      - [Sourcing the Data](#sourcing-the-data)\n  - [About](#about)\n  - [How to Contribute](#how-to-contribute)\n  - [License](#license)\n\n## What's New\n\nHere's whats new in 0.2.2:\n\n1. We've cleaned up the code and improved our code coverage\n\n## Features\n\n- Privacy by Design\n- local storage of the DaaS document for listener service\n- Kafka brokering as an independent thread when processing the sourced data \n- Processor service traits for building custom data processors\n- Out of box Geneis processor for managing the raw data and start of all data flows\n\n## Examples \nThis SDK comes with examples for each of the key services for the DaaS pattern.\n\n#### Starting the DaaS listening Service\n```\nC:\\workspace\\daas-sdk\u003e cargo build --example daas-listener\nC:\\workspace\\daas-sdk\u003e cd .\\target\\debug\\examples\\\nC:\\workspace\\daas-sdk\\target\\debug\\examples\u003e .\\daas-listener.exe\n```\n\n#### Starting the DaaS Genesis Processor\n\u003e NOTE: This requires that you have set up a S3 Bucket with the AWS crendentials set as environment variables\n```\nC:\\workspace\\daas-sdk\u003e cargo build --example genesis\nC:\\workspace\\daas-sdk\u003e cd .\\target\\debug\\examples\\\nC:\\workspace\\daas-sdk\\target\\debug\\examples\u003e .\\genesis.exe\n```\n\n#### Starting the Order Clothing Processor\n```\nC:\\workspace\\daas-sdk\u003e cargo build --example order-clothing\nC:\\workspace\\daas-sdk\u003e cd .\\target\\debug\\examples\\\nC:\\workspace\\daas-sdk\\target\\debug\\examples\u003e .\\order-clothing.exe\n```\n\n#### Sourcing the Data\nThere is a `daas-sdk` Collection in the `./examples/postman` directory of this repo that contains example RESTful calls that can be imported and run from Postman.\n\n## About\n\nThe intent of the `daas-sdk` development kit is to enable the implementation of [DaaS pattern](https://github.com/dsietz/daas) by providing the functionality and components for developers to implement best practices in their own software soltuions. \n\n## How to Contribute\n\nDetails on how to contribute can be found in the [CONTRIBUTING](./CONTRIBUTING.md) file.\n\n## License\n\n`daas-sdk` is primarily distributed under the terms of the Apache License (Version 2.0).\n\nSee [LICENSE-APACHE \"Apache License](./LICENSE-APACHE) for details.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdsietz%2Fdaas-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdsietz%2Fdaas-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdsietz%2Fdaas-sdk/lists"}