{"id":30041716,"url":"https://github.com/ohadlevy/foreman-ui","last_synced_at":"2026-04-13T18:01:50.847Z","repository":{"id":307835323,"uuid":"1030837625","full_name":"ohadlevy/foreman-ui","owner":"ohadlevy","description":"Modern React-based user interface for Foreman infrastructure management","archived":false,"fork":false,"pushed_at":"2025-08-18T15:23:51.000Z","size":772,"stargazers_count":1,"open_issues_count":28,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-18T17:30:44.722Z","etag":null,"topics":["foreman","infrastructure","patternfly","react","typescript","ui"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/ohadlevy.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":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-08-02T12:37:50.000Z","updated_at":"2025-08-16T13:47:06.000Z","dependencies_parsed_at":"2025-08-02T14:38:48.655Z","dependency_job_id":"d89de382-c9f1-45b0-a48e-bcfd610738fb","html_url":"https://github.com/ohadlevy/foreman-ui","commit_stats":null,"previous_names":["ohadlevy/foreman-ui"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ohadlevy/foreman-ui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ohadlevy%2Fforeman-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ohadlevy%2Fforeman-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ohadlevy%2Fforeman-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ohadlevy%2Fforeman-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ohadlevy","download_url":"https://codeload.github.com/ohadlevy/foreman-ui/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ohadlevy%2Fforeman-ui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31764317,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T15:25:13.801Z","status":"ssl_error","status_checked_at":"2026-04-13T15:25:09.162Z","response_time":93,"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":["foreman","infrastructure","patternfly","react","typescript","ui"],"created_at":"2025-08-07T02:55:13.651Z","updated_at":"2026-04-13T18:01:50.836Z","avatar_url":"https://github.com/ohadlevy.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Foreman React UI\n\nA modern React-based user interface for [Foreman](https://theforeman.org/), built as a monorepo with separate admin and user portals.\n\n## 🚧 Early Development\n\nThis project is in active early development. Expect breaking changes and incomplete features.\n\n## Architecture\n\nThis project consists of main packages:\n\n- **@foreman/shared** - Shared components, API clients, hooks, and utilities\n- **@foreman/user-portal** - Self-service portal for end users ✅\n- **@foreman/admin-portal** - Full-featured admin interface (planned)\n\n## Quick Start\n\n### Prerequisites\n\n- Node.js 20+\n- Yarn 1.22+\n- Access to a Foreman instance with API v2\n\n### Installation\n\n#### Option 1: Container Deployment (Recommended)\n```bash\ngit clone https://github.com/ohadlevy/foreman-ui.git\ncd foreman-ui\n\n# Edit compose.yml to set your FOREMAN_URL, then:\npodman compose up\n```\n\nAccess the UI at https://localhost:8443\n\n**📦 For complete container setup guide, see [CONTAINER.md](./CONTAINER.md)**\n\n#### Option 2: Automated Development Setup\n```bash\ngit clone https://github.com/ohadlevy/foreman-ui.git\ncd foreman-ui\n./setup.sh\n```\n\n#### Option 3: Manual Development Setup\n```bash\ngit clone https://github.com/ohadlevy/foreman-ui.git\ncd foreman-ui\nyarn install\nyarn build:shared  # Required before starting user portal\n```\n\n**📖 For detailed development setup, see [DEVELOPMENT.md](./DEVELOPMENT.md)**\n\n### Development\n\n```bash\n# Start user portal in development mode\nyarn dev:user\n\n# Start all packages in development mode\nyarn dev\n\n# Build all packages\nyarn build\n\n# Run tests\nyarn test\n\n# Run linting\nyarn lint\n```\n\n## Current Status\n\n✅ **User Portal**: Functional with authentication, host management, profile\n✅ **Shared Library**: API clients, components, hooks, auth system\n⚠️ **Admin Portal**: Planned for future release\n\n### Environment Configuration\n\nCreate `.env.local` files in each portal package:\n\n```bash\n# packages/user-portal/.env.local\nREACT_APP_API_URL=http://localhost:3000/api/v2\nREACT_APP_GRAPHQL_URL=http://localhost:3000/graphql\n```\n\n## Package Structure\n\n```\nforeman-ui/\n├── packages/\n│   ├── shared/           # Shared library\n│   ├── user-portal/      # User self-service portal\n│   └── admin-portal/     # Admin interface (future)\n├── tools/                # Build and development tools\n└── docs/                 # Documentation\n```\n\n## Technology Stack\n\n- **React 18** with TypeScript\n- **PatternFly v6** for UI components\n- **React Query + Zustand** for state management\n- **React Router v6** for routing\n- **Vite** for build tooling\n- **Vitest** for testing\n\n## Contributing\n\nSee [CONTRIBUTING.md](./CONTRIBUTING.md) for development guidelines and workflow.\n\n## Documentation\n\n- **[DEVELOPMENT.md](./DEVELOPMENT.md)** - Detailed development guide and best practices\n- **[TESTING.md](./TESTING.md)** - Testing strategies and examples\n- **[SECURITY.md](./SECURITY.md)** - Security policy and vulnerability reporting\n\n## License\n\nGNU General Public License v3.0","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fohadlevy%2Fforeman-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fohadlevy%2Fforeman-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fohadlevy%2Fforeman-ui/lists"}