mirror of
https://github.com/ansible/awx.git
synced 2026-03-28 22:35:08 -02:30
Update ui dev readme, templates
This commit is contained in:
6
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
6
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
@@ -9,18 +9,18 @@ body:
|
|||||||
value: |
|
value: |
|
||||||
Issues are for **concrete, actionable bugs and feature requests** only. For debugging help or technical support, please use:
|
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
|
- 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
|
- type: checkboxes
|
||||||
id: terms
|
id: terms
|
||||||
attributes:
|
attributes:
|
||||||
label: Please confirm the following
|
label: Please confirm the following
|
||||||
options:
|
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
|
required: true
|
||||||
- label: I have checked the [current issues](https://github.com/ansible/awx/issues) for duplicates.
|
- label: I have checked the [current issues](https://github.com/ansible/awx/issues) for duplicates.
|
||||||
required: true
|
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
|
required: true
|
||||||
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ The UI is built using [ReactJS](https://reactjs.org/docs/getting-started.html) a
|
|||||||
The AWX UI requires the following:
|
The AWX UI requires the following:
|
||||||
|
|
||||||
- Node 14.x LTS
|
- Node 14.x LTS
|
||||||
- NPM 6.x LTS
|
- NPM 7.x LTS
|
||||||
|
|
||||||
Run the following to install all the dependencies:
|
Run the following to install all the dependencies:
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
# AWX-PF
|
# AWX-UI
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
- node 14.x LTS, npm 7.x LTS, make, git
|
- node 14.x LTS, npm 7.x, make, git
|
||||||
|
|
||||||
## Development
|
## Development
|
||||||
The API development server will need to be running. See [CONTRIBUTING.md](../../CONTRIBUTING.md).
|
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
|
### Build for the Development Containers
|
||||||
If you just want to build a ui for the container-based awx development
|
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
|
```shell
|
||||||
# The ui will be reachable at https://localhost:8043 or
|
# The ui will be reachable at https://localhost:8043 or
|
||||||
@@ -108,8 +108,8 @@ To run:
|
|||||||
|
|
||||||
```shell
|
```shell
|
||||||
cd awx/awx/ui
|
cd awx/awx/ui
|
||||||
docker build -t 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-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
|
||||||
```
|
```
|
||||||
|
|
||||||
**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)
|
**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)
|
||||||
|
|||||||
Reference in New Issue
Block a user