{"id":15018266,"url":"https://github.com/ansible/ansible-ui","last_synced_at":"2025-04-05T07:08:02.468Z","repository":{"id":98738418,"uuid":"546084283","full_name":"ansible/ansible-ui","owner":"ansible","description":"The UIs for Ansible Projects such as AWX, EDA, and HUB.","archived":false,"fork":false,"pushed_at":"2024-09-03T13:25:01.000Z","size":58096,"stargazers_count":73,"open_issues_count":23,"forks_count":66,"subscribers_count":18,"default_branch":"main","last_synced_at":"2024-10-29T17:36:35.614Z","etag":null,"topics":["ansible","awx","awx-ansible"],"latest_commit_sha":null,"homepage":"https://ansible.github.io/ansible-ui/","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/ansible.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-10-05T13:51:23.000Z","updated_at":"2024-09-13T11:59:05.000Z","dependencies_parsed_at":"2024-01-02T16:24:13.665Z","dependency_job_id":"76422a8c-150b-4011-a80e-05d624c3ab63","html_url":"https://github.com/ansible/ansible-ui","commit_stats":{"total_commits":4483,"total_committers":41,"mean_commits":"109.34146341463415","dds":0.6446575953602498,"last_synced_commit":"96dcf0bc903780360e13c5614c35662d75157c05"},"previous_names":[],"tags_count":963,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ansible%2Fansible-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ansible%2Fansible-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ansible%2Fansible-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ansible%2Fansible-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ansible","download_url":"https://codeload.github.com/ansible/ansible-ui/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247299833,"owners_count":20916190,"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":["ansible","awx","awx-ansible"],"created_at":"2024-09-24T19:51:45.683Z","updated_at":"2025-04-05T07:08:02.450Z","avatar_url":"https://github.com/ansible.png","language":"TypeScript","readme":"# Ansible UI\n\nUI projects for [Ansible](https://www.ansible.com).\n\n- [Getting Started](#getting-started)\n- [Environment Variables](#environment-variables)\n- [NPM Scripts](#npm-scripts)\n- [Documentation](#documentation)\n- [Code of Conduct](#code-of-conduct)\n\n## Getting Started\n\n1. Prerequisites\n\n   - Node 18.x (recommended)\n   - NPM 8.x (recommended)\n\n   Note: The project should with older versions of node and npm but may require regenerating the package-lock.json.\n\n2. Clone Repository\n\n   ```zsh\n   git clone git@github.com:ansible/ansible-ui.git\n   ```\n\n3. Install Package Dependencies\n\n   ```zsh\n   npm ci\n   ```\n\n## Environment Variables\n\n|    Environment Variable | Description                                         |\n| ----------------------: | --------------------------------------------------- |\n|            `AWX_SERVER` | The AWX server (protocol://host:port).              |\n|          `AWX_USERNAME` | The AWX server username. (only used by Cypress)     |\n|          `AWX_PASSWORD` | The AWX server password. (only used by Cypress)     |\n|                         |                                                     |\n|            `EDA_SERVER` | The EDA server (protocol://host:port).              |\n|          `EDA_USERNAME` | The EDA server username. (only used by Cypress)     |\n|          `EDA_PASSWORD` | The EDA server password. (only used by Cypress)     |\n|                         |                                                     |\n|            `HUB_SERVER` | The HUB server (protocol://host:port).              |\n|          `HUB_USERNAME` | The HUB server username. (only used by Cypress)     |\n|          `HUB_PASSWORD` | The HUB server password. (only used by Cypress)     |\n|        `HUB_API_PREFIX` | The HUB server API prefix. (`/api/galaxy`)          |\n| `HUB_GALAXYKIT_COMMAND` | The galaxykit command. (`galaxykit --ignore-certs`) |\n\n```zsh\nexport AWX_SERVER=https://localhost:8043\nexport AWX_USERNAME='my-user'\nexport AWX_PASSWORD='my-password'\n\nexport EDA_SERVER=http://localhost:8000\nexport EDA_USERNAME='my-user'\nexport EDA_PASSWORD='my-password'\n\nexport HUB_SERVER=http://localhost:5001\nexport HUB_USERNAME='my-user'\nexport HUB_PASSWORD='my-password'\n```\n\n\u003e Note: For Hub integration tests: Check that the Ansible binary was correctly installed under the Python directory. Add it to the PATH variable. This is needed for the galaxykit commands that create hub resources for tests.\n\n## NPM Scripts\n\n| NPM Script                  | Description                             |\n| --------------------------- | --------------------------------------- |\n| `npm run awx`               | Run AWX on \u003chttp://localhost:4101\u003e      |\n| `npm run e2e:awx`           | Run AWX E2E tests from Cypress UI       |\n| `npm run e2e:run:awx`       | Run AWX E2E tests from CLI              |\n| `npm run component:awx`     | Run AWX component tests from Cypress UI |\n| `npm run component:run:awx` | Run AWX component tests from CLI        |\n|                             |                                         |\n| `npm run hub`               | Run HUB on \u003chttp://localhost:4102\u003e      |\n| `npm run e2e:hub`           | Run HUB E2E tests from Cypress UI       |\n| `npm run e2e:run:hub`       | Run HUB E2E tests from CLI              |\n| `npm run component:hub`     | Run HUB component tests from Cypress UI |\n| `npm run component:run:hub` | Run HUB component tests from CLI        |\n|                             |                                         |\n| `npm run eda`               | Run EDA on \u003chttp://localhost:4103\u003e      |\n| `npm run e2e:eda`           | Run EDA E2E tests from Cypress UI       |\n| `npm run e2e:run:eda`       | Run EDA E2E tests from CLI              |\n| `npm run component:eda`     | Run EDA component tests from Cypress UI |\n| `npm run component:run:eda` | Run EDA component tests from CLI        |\n|                             |                                         |\n| `npm run tsc`               | Run Typescript compiler checks          |\n| `npm run eslint`            | Run eslint checks                       |\n| `npm run prettier`          | Run prettier format checks              |\n| `npm run prettier:fix`      | Fix prettier format of files            |\n\n## Documentation\n\n- [Development](./docs/DEVELOPMENT.md)\n- [Framework](./framework/README.md) - A framework for building applications using [PatternFly](https://www.patternfly.org).\n- [Handling Errors in Forms](./framework/PageForm/README.md) - A component for handling forms and errors.\n\n## Code of Conduct\n\nWe ask all of our community members and contributors to adhere to the [Ansible code of conduct](http://docs.ansible.com/ansible/latest/community/code_of_conduct.html). If you have questions or need assistance, please reach out to our community team at [codeofconduct@ansible.com](mailto:codeofconduct@ansible.com)\n","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fansible%2Fansible-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fansible%2Fansible-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fansible%2Fansible-ui/lists"}