{"id":48371369,"url":"https://github.com/curityio/ui-kit","last_synced_at":"2026-04-05T16:31:41.494Z","repository":{"id":334184179,"uuid":"1003028168","full_name":"curityio/ui-kit","owner":"curityio","description":"Monorepo for Self Service Portal, Login Web App, Template System, and Styles","archived":false,"fork":false,"pushed_at":"2026-04-01T14:16:25.000Z","size":85506,"stargazers_count":5,"open_issues_count":11,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-01T16:15:46.311Z","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":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/curityio.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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":null,"cla":null}},"created_at":"2025-06-16T14:06:35.000Z","updated_at":"2026-03-24T07:27:42.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/curityio/ui-kit","commit_stats":null,"previous_names":["curityio/ui-kit"],"tags_count":18,"template":false,"template_full_name":null,"purl":"pkg:github/curityio/ui-kit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/curityio%2Fui-kit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/curityio%2Fui-kit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/curityio%2Fui-kit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/curityio%2Fui-kit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/curityio","download_url":"https://codeload.github.com/curityio/ui-kit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/curityio%2Fui-kit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31442923,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T15:22:31.103Z","status":"ssl_error","status_checked_at":"2026-04-05T15:22:00.205Z","response_time":75,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":[],"created_at":"2026-04-05T16:31:36.678Z","updated_at":"2026-04-05T16:31:41.489Z","avatar_url":"https://github.com/curityio.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Curity UI Kit\n\n**Customize the look and feel of your applications**\n\n\u003cimg\n   src=\"src/common/assets/images/ui-kit-start.jpg\"\n   alt=\"Curity UI Kit\"\n   width=\"800\"\n/\u003e\n\n\nThis monorepo contains:\n\n- Identity Server Templates\n- Self Service Portal\n- CSS Library\n- UI Icons React Library\n- React Component Library\n\n## Prerequisites\n- Node.js (version as specified in the `.nvmrc` file)\n\n## Setup\n\nThis project uses a specific Node.js version as specified in the `.nvmrc` file. We recommend using [nvm (Node Version Manager)](https://github.com/nvm-sh/nvm) to ensure compatibility.\n\n#### Using nvm\n\nIf you have nvm installed, you can automatically use the correct Node.js version by running:\n\n```shell\nnvm use\n```\n\nThis will read the version from `.nvmrc` and switch to it. If the specified version isn't installed, you'll be prompted to install it with:\n\n```shell\nnvm install\n```\n\n#### Installing nvm\n\nIf you don't have nvm installed:\n\n- **macOS/Linux**: Follow the [official installation guide](https://github.com/nvm-sh/nvm#installing-and-updating)\n- **Windows**: Use [nvm-windows](https://github.com/coreybutler/nvm-windows)\n\n## Install\n\nTo install all dependencies across a monorepo using npm workspaces, you just run:\n\n```shell\nnpm install\n```\n\n## Start Preview Servers\n\nTo start preview servers concurrently for all projects, run:\n\n```shell\nnpm start\n```\n\nThen you can access the projects at:\n\n- Curity Identity Server Templates: [http://localhost:3000](http://localhost:3000)\n- Self Service Portal: [http://localhost:5173/previewer](http://localhost:5173/previewer)\n- Curity CSS Docs: [http://localhost:4321/](http://localhost:4321/)\n\nTo start projects individually, run:\n\n- `npm start:identity-server` - to start the Curity Identity Server Templates\n- `npm start:ssp` to start the Self Service Portal\n\n## Build\n\nTo build everything, run:\n\n```shell\nnpm run build\n```\n\nTo build projects individually, run:\n\n- `npm run build:identity-server` to build the Identity Server Templates\n- `npm run build:ssp` to build the Self Service Portal\n- `npm run build:css` to build Curity CSS library\n- `npm run build:icons` to build Curity UI Icons React library\n\n\n## Deploy\n\nTo deploy build artifacts (assets, templates, and messages) to a production environment, you can use the `deploy.sh` script.\n\n### Prerequisites\n\n1. Set the `IDSVR_HOME` environment variable to your Identity Server installation directory:\n   ```shell\n   export IDSVR_HOME=/path/to/idsvr/dist\n   ```\n\n2. Build the projects before deploying:\n   ```shell\n   npm run build\n   ```\n\n### Deployment Options\n\n**Deploy to overrides (default):**\n```shell\n./deploy.sh\n```\nThis deploys:\n- Identity Server assets, templates, and messages\n- Self Service Portal to `templates/overrides` and `messages/overrides`\n\n**Deploy to a specific template area:**\n```shell\n./deploy.sh my-template-area\n```\nThis deploys:\n- Identity Server assets, templates, and messages\n- Self Service Portal only to the specified template area (not to overrides)\n\n### What Gets Deployed\n\n**Identity Server:**\n- Assets (CSS, Fonts, Images, JS) → `${IDSVR_HOME}/usr/share/webroot`\n- Templates → `${IDSVR_HOME}/usr/share/templates`\n- Messages → `${IDSVR_HOME}/usr/share/messages`\n\n**Self Service Portal:**\n- Templates → `${IDSVR_HOME}/usr/share/templates/overrides/apps/self-service-portal` or `template-areas/{area}/apps/self-service-portal`\n- Messages → `${IDSVR_HOME}/usr/share/messages/overrides/{language}/apps/self-service-portal` or `template-areas/{area}/{language}/apps/self-service-portal`\n\n## License\nLicensed under the Apache License, Version 2.0. See [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcurityio%2Fui-kit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcurityio%2Fui-kit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcurityio%2Fui-kit/lists"}