{"id":30842007,"url":"https://github.com/o2sdev/o2s-demo-mocked-integration","last_synced_at":"2025-09-06T20:31:59.892Z","repository":{"id":280998187,"uuid":"943869474","full_name":"o2sdev/o2s-demo-mocked-integration","owner":"o2sdev","description":null,"archived":false,"fork":false,"pushed_at":"2025-09-01T15:14:30.000Z","size":2805,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-01T17:25:47.094Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/o2sdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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":"2025-03-06T11:57:53.000Z","updated_at":"2025-09-01T15:14:34.000Z","dependencies_parsed_at":"2025-04-10T15:22:10.249Z","dependency_job_id":"3ce12450-9c7a-4a00-b66a-2b2cdd64ecba","html_url":"https://github.com/o2sdev/o2s-demo-mocked-integration","commit_stats":null,"previous_names":["o2sdev/demo-mocked-integration","o2sdev/o2s-demo-mocked-integration"],"tags_count":41,"template":false,"template_full_name":null,"purl":"pkg:github/o2sdev/o2s-demo-mocked-integration","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/o2sdev%2Fo2s-demo-mocked-integration","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/o2sdev%2Fo2s-demo-mocked-integration/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/o2sdev%2Fo2s-demo-mocked-integration/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/o2sdev%2Fo2s-demo-mocked-integration/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/o2sdev","download_url":"https://codeload.github.com/o2sdev/o2s-demo-mocked-integration/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/o2sdev%2Fo2s-demo-mocked-integration/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273958378,"owners_count":25198042,"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","status":"online","status_checked_at":"2025-09-06T02:00:13.247Z","response_time":2576,"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":[],"created_at":"2025-09-06T20:30:50.434Z","updated_at":"2025-09-06T20:31:59.877Z","avatar_url":"https://github.com/o2sdev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Open Self Service - open-source development kit for composable Customer Portals](apps/docs/static/img/o2s-gh-cover.png)](https://www.openselfservice.com)\n\n# Open Self Service (O2S)\n\n**Framework for building composable customer self-service portals.**\n\n**Open Self Service** is an open-source development kit that simplifies the creation of self-service frontend applications by integrating multiple headless APIs into a scalable frontend.\nIts flexibility allows for many customizations and lets you build various types of composable frontends.\n\n## 🚀 Key Features\n\n- **Composable** – In short: **API-agnostic**. Compose customer experience by combining multiple \"backend capabilities\" into seamless, fully decoupled frontend.\n- **Next.js Frontend Starter** – Robust Next.js-based frontend including basic customer portal pages and content management capabilities.\n- **API Harmonization Server** – **Integration layer** for data aggregation, orchestration and normalization. Provides vendor lock-in safeness and better maintainability.\n- **TypeScript SDK** – Easily interact with the Harmonization Server in the frontend app or any web, mobile, other TS-based apps.\n- **Pre-built Integrations** – Ready integrations so that you can set up your solution faster.\n- **Extensibility** – Customize UI components, add new pages, add new API integrations, adapt to your needs.\n\n## 📖 Documentation\n\nCheck out the **[full documentation](https://www.openselfservice.com/docs)** to get started.\n\n## 🛠️ Installation\n\nTo set up a new O2S project, use the `create-o2s-app` starter and follow the installation steps in the documentation.\n\n```sh\nnpx create-o2s-app my-project\ncd my-project\nnpm run dev\n```\n\n## 🔧 Running the Project\n\nTo start all services in **development mode**, use:\n\n```sh\nnpm run dev\n```\n\nTo run individual components:\n\n```sh\ncd apps/api-harmonization \u0026\u0026 npm run dev  # Start API Harmonization Server\ncd apps/frontend \u0026\u0026 npm run dev  # Start Next.js Frontend\n```\n\nFor more details, check the **[Running the project](https://www.openselfservice.com/docs/getting-started/running-locally)** guide.\n\n## 🏗️ Project Structure\n\nO2S follows a **monorepo structure** using **Turborepo** for managing apps and internal packages.\n\n```sh\n/apps\n  /frontend             # Next.js frontend\n  /api-harmonization    # API Harmonization Server (NestJS)\n\n/packages\n  /ui    # UI component library (shadcn/ui, Tailwind)\n```\n\nFor a detailed breakdown, visit **[Project structure](https://www.openselfservice.com/docs/getting-started/project-structure)**.\n\n## 🖥️ Demo app\n[![O2S Demo](apps/docs/static/img/o2s-gh-demo.png)](https://demo.openselfservice.com)\n\n## 🔌 Available Integrations\n\nO2S includes pre-built integrations and allows you to extend functionality as needed.\n\n| Integration type/area | Status                                                                                                                                   |\n|-----------------------|------------------------------------------------------------------------------------------------------------------------------------------|\n| **CMS**               | ✅ **StrapiCMS** - available\u003cbr/\u003e 🔄 **Contentful** - in progress                                                                         |\n| **IAM**               | ✅ **Auth.js** - available\u003cbr/\u003e ✅ **Keycloak** - available (not part of O2S, contact us for details)                                      |\n| **Cache**             | ✅ **Redis** - available                                                                                                                  |\n| **Search**            | ✅ **Algolia** - available                                                                                                                |\n| **CRM**               | ✅ **SurveyJS** - ticket submission handling\u003cbr/\u003e 🔄 **other CRM solutions** - planned                                                    |\n| **ERP**               | ✅ **Medusa** - via Medusa plugin adding ERP-like features\u003cbr/\u003e🔄 **SAP S/4HANA** - In progress (not part of O2S, contact us for details) |\n| **Commerce**          | 🔄 **Medusa** - in progress (basic product information, other areas TBD)                                                                 |\n\n\n## 🔥 Why Open Self Service?\n\n- **Fully composable** – Integrate multiple backend services and build your solution by combining their capabilities.\n- **Headless \u0026 API-first** – Integrate multiple services seamlessly.\n- **Future-proof** – Build backend-agnostic customer portals. Swap backends without breaking the frontend.\n- **Modern stack** – Built with **Next.js, shadcn/ui, TypeScript, NestJS**.\n\n## 🤝 Contributing\n\nWe welcome contributions!\nIf you’d like to contribute, please check the **[Contribution Guide](CONTRIBUTING.md)**.\n\n## Contact e-mail\n[contact@openselfservice.com](mailto:contact@openselfservice.com)\n\n## 📩 Stay Updated\n\n- Website: [openselfservice.com](https://www.openselfservice.com)\n- LinkedIn: [/company/open-self-service/](https://www.linkedin.com/company/open-self-service/)\n- Twitter/X: [@openselfservice](https://twitter.com/openselfservice)\n- Discord: [Join our community](https://discord.gg/4R568nZgsT)\n- GitHub Discussions: [Join the conversation](https://github.com/o2sdev/openselfservice/discussions)\n\n## 📜 License\n\nOpen Self Service is **open-source software** licensed under the **MIT License**.\n\n## Built by Hycom\n\nO2S is maintained as an open-source project by **[hycom.digital](https://hycom.digital)** - a Polish tech company that delivers enterprise digital self-service and e-commerce solutions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fo2sdev%2Fo2s-demo-mocked-integration","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fo2sdev%2Fo2s-demo-mocked-integration","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fo2sdev%2Fo2s-demo-mocked-integration/lists"}