{"id":40451868,"url":"https://github.com/project-koku/koku-ui-mfe","last_synced_at":"2026-01-20T17:21:52.759Z","repository":{"id":219946911,"uuid":"703648211","full_name":"project-koku/koku-ui-mfe","owner":"project-koku","description":"Koku-ui Microfrontend (MFE) with Module Federation","archived":false,"fork":false,"pushed_at":"2025-10-27T15:14:01.000Z","size":5082,"stargazers_count":0,"open_issues_count":1,"forks_count":9,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-10-27T17:16:30.264Z","etag":null,"topics":["hacktoberfest","koku","patternfly","ui"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/project-koku.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING","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":"DCO","cla":null}},"created_at":"2023-10-11T16:24:09.000Z","updated_at":"2025-10-27T15:14:05.000Z","dependencies_parsed_at":"2024-11-13T19:28:18.835Z","dependency_job_id":"d95c95a2-f387-4a37-b51d-e9ee0fdbbd6c","html_url":"https://github.com/project-koku/koku-ui-mfe","commit_stats":null,"previous_names":["project-koku/koku-ui-mfe"],"tags_count":51,"template":false,"template_full_name":null,"purl":"pkg:github/project-koku/koku-ui-mfe","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/project-koku%2Fkoku-ui-mfe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/project-koku%2Fkoku-ui-mfe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/project-koku%2Fkoku-ui-mfe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/project-koku%2Fkoku-ui-mfe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/project-koku","download_url":"https://codeload.github.com/project-koku/koku-ui-mfe/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/project-koku%2Fkoku-ui-mfe/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28607626,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T16:10:39.856Z","status":"ssl_error","status_checked_at":"2026-01-20T16:10:39.493Z","response_time":117,"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":["hacktoberfest","koku","patternfly","ui"],"created_at":"2026-01-20T17:21:51.938Z","updated_at":"2026-01-20T17:21:52.743Z","avatar_url":"https://github.com/project-koku.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DEPRECATED\n\nThis project is no longer active. Please see the [koku-ui-ros README][koku-ui-ros-readme] in the Koku UI monorepo.\n\n# Koku microfrontend (MFE) with Module Federation\n\n[![Apache 2.0][license-badge]](https://github.com/project-koku/koku-ui-mfe/blob/main/LICENSE)\n[![CI Status][build-badge]](https://github.com/project-koku/koku-ui-mfe/actions/workflows/ci.yml?query=branch%3Amain)\n[![codecov][codecov-badge]](https://codecov.io/gh/project-koku/koku-ui-mfe)\n\nReact.js app for Cost Management.\n\nUser interface is based on [Patternfly].\n\nSubmit issues in [Jira].\n\n## Requirements\n\n* [NodeJS v20.15+][nodejs]\n* [npm v10.8+][npm]\n* [Podman][podman]\n\nAfter installing Podman, create and start your VM.\n\n```\npodman machine init\npodman machine start\n```\n\n## Setup `hosts` entries (do this once)\n\nEdit the `/etc/hosts` file and add the following entries\n```\n127.0.0.1 prod.foo.redhat.com\n127.0.0.1 stage.foo.redhat.com\n```\n\nAlternatively, run the [patch-etc-hosts.sh][patch-etc-hosts] script from the insights-proxy repo\n```\nsudo bash scripts/patch-etc-hosts.sh\n```\n\n## Getting Started\n\n1. Install requirements listed above.\n2. Setup `/etc/hosts` entries listed above.\n3. Clone the repository, and open a terminal in the base of this project.\n4. Run the command `npm install` to install all the dependencies.\n\n## Building\n```\nnpm build\n```\n\n## Testing\n```\nnpm test\n```\n\n## Running Koku MFE against a hosted Koku API, using webpack proxy\n\nNote that this approach currently supports only the Insights stage environment.\n\n1. Start development server\n```\nnpm start\n```\n\nFollow the prompts that follow.\n\n* Which platform environment you want to use `stage`\n\n2. Open the following URL\n```\nhttps://stage.foo.redhat.com:1337/staging/cost-management\n```\n\nNote: Must log in with a user that has Cost Management permissions\n\n### Running Koku MFE with local Cloud Services Backend\n\nRefer to the [serving files locally][serving-files-locally] section of cloud services config for more details\n\n1. Serve files locally from Cloud Services Backend repo\n```\nmake dev-static-node\n```\n\n2. Start development server in Koku MFE repo\n```\nnpm start:csb\n```\n\n### Running Koku MFE with local Koku UI\n\nRefer to the [koku-ui README][koku-ui-readme] for more details\n\n1. Start development server in Koku MFE repo\n```\nnpm start:static\n```\n\n2. Start development server in Koku UI repo\n```\nnpm start:mfe\n```\n\n### Running Koku MFE with local Koku UI and Cloud Services Backend\n\nRefer to the [serving files locally][serving-files-locally] section of cloud services config and the [koku-ui README][koku-ui-readme] for more details\n\n1. Serve files locally from Cloud Services Backend repo\n```\nmake dev-static-node\n```\n\n2. Start development server in Koku MFE repo\n```\nnpm start:static\n```\n\n3. Start development server in Koku UI repo\n```\nnpm start:csb:mfe\n```\n\n## Releasing Koku MFE\n\nThis [RELEASE][release-doc] doc describes how to release Koku MFE to each staging environment.\n\n[build-badge]: https://github.com/project-koku/koku-ui-mfe/actions/workflows/ci.yml/badge.svg?branch=main\n[codecov-badge]: https://codecov.io/gh/project-koku/koku-ui-mfe/graph/badge.svg?token=1hjFIy1cRe\n[Jira]: https://issues.redhat.com/projects/COST/\n[koku-ui-readme]: https://github.com/project-koku/koku-ui#readme\n[koku-ui-ros-readme]: https://github.com/project-koku/koku-ui/blob/main/apps/koku-ui-ros/README.md\n[license-badge]: https://img.shields.io/github/license/project-koku/koku-ui-mfe.svg?longCache=true\n[nodejs]: https://nodejs.org/en/\n[npm]: https://www.npmjs.com/\n[patch-etc-hosts]: https://github.com/RedHatInsights/insights-proxy/blob/master/scripts/patch-etc-hosts.sh\n[Patternfly]: https://www.patternfly.org/\n[release-doc]: https://github.com/project-koku/koku-ui-mfe/blob/main/RELEASE.md\n[serving-files-locally]: https://github.com/RedHatInsights/chrome-service-backend/blob/main/docs/cloud-services-config.md#serving-files-locally\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproject-koku%2Fkoku-ui-mfe","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fproject-koku%2Fkoku-ui-mfe","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproject-koku%2Fkoku-ui-mfe/lists"}