diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 86bafa3a6c..065d8cfdb9 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -9,18 +9,18 @@ body: value: | Issues are for **concrete, actionable bugs and feature requests** only. For debugging help or technical support, please use: - The #ansible-awx channel on irc.libera.chat - - https://groups.google.com/forum/#!forum/awx-project + - The awx project mailing list, https://groups.google.com/forum/#!forum/awx-project - type: checkboxes id: terms attributes: label: Please confirm the following options: - - label: I agree to follow this project's [code of conduct](http://docs.ansible.com/ansible/latest/community/code_of_conduct.html). + - label: I agree to follow this project's [code of conduct](https://docs.ansible.com/ansible/latest/community/code_of_conduct.html). required: true - label: I have checked the [current issues](https://github.com/ansible/awx/issues) for duplicates. required: true - - label: I understand that AWX is open source software provided for free and that I am not entitled to status updates or other assurances. + - label: I understand that AWX is open source software provided for free and that I might not receive a timely response. required: true - type: textarea diff --git a/awx/ui/CONTRIBUTING.md b/awx/ui/CONTRIBUTING.md index d9b8a0f114..a45a4269f0 100644 --- a/awx/ui/CONTRIBUTING.md +++ b/awx/ui/CONTRIBUTING.md @@ -57,7 +57,7 @@ The UI is built using [ReactJS](https://reactjs.org/docs/getting-started.html) a The AWX UI requires the following: - Node 14.x LTS -- NPM 6.x LTS +- NPM 7.x LTS Run the following to install all the dependencies: diff --git a/awx/ui/README.md b/awx/ui/README.md index f16771719d..408ee89b82 100644 --- a/awx/ui/README.md +++ b/awx/ui/README.md @@ -1,7 +1,7 @@ -# AWX-PF +# AWX-UI ## Requirements -- node 14.x LTS, npm 7.x LTS, make, git +- node 14.x LTS, npm 7.x, make, git ## Development The API development server will need to be running. See [CONTRIBUTING.md](../../CONTRIBUTING.md). @@ -17,7 +17,7 @@ npm --prefix=awx/ui start ### Build for the Development Containers If you just want to build a ui for the container-based awx development -environment, use these make targets: +environment and do not need to workk on the ui code, use these make targets: ```shell # The ui will be reachable at https://localhost:8043 or @@ -108,8 +108,8 @@ To run: ```shell cd awx/awx/ui -docker build -t awx-ui-next . -docker run --name tools_ui_1 --network _sources_default --link 'tools_awx_1:awx' -e TARGET="https://awx:8043" -p '3001:3001' --rm -v $(pwd)/src:/ui/src awx-ui-next +docker build -t awx-ui . +docker run --name tools_ui_1 --network _sources_default --link 'tools_awx_1:awx' -e TARGET="https://awx:8043" -p '3001:3001' --rm -v $(pwd)/src:/ui/src awx-ui ``` **Note:** This is for CI, test systems, zuul, etc. For local development, see [usage](https://github.com/ansible/awx/blob/devel/awx/ui/README.md#Development)