Files
awx/awx/ui
Sviatoslav Sydorenko (Святослав Сидоренко) ece21b15d0 Use awx-plugins-shared code from awx_plugins.interfaces (#15566)
* Add `awx_plugins.interfaces` runtime dependency

* Use `awx_plugins.interfaces` for runtime detection

The original function name was `server_product_name()` but it didn't
really represent what it did. So it was renamed into
`detect_server_product_name()` in an attempt of disambiguation.

* Use `awx_plugins.interfaces` to map container path

The original function `to_container_path` has been renamed into
`get_incontainer_path()` to represent what it does better and make
the imports more obvious.

* Add license file for awx_plugins.interfaces

---------

Co-authored-by: Hao Liu <44379968+TheRealHaoLiu@users.noreply.github.com>
2024-10-02 18:40:16 +00:00
..
2024-08-22 13:48:56 -04:00
2022-03-14 13:19:57 -04:00
2023-02-01 14:59:38 -05:00
2024-08-22 13:48:56 -04:00
2024-08-22 13:48:56 -04:00

Instruction to build ui directly from this directory

Set src of the ui repo

Via GIT

export UI_GIT_REPO=https://<git repo>

or

export UI_GIT_REPO=git@<git repo>

optionally set branch (default is main)

export UI_GIT_BRANCH=main

NOTE: UI_LOCAL have higher precedence than UI_GIT_REPO, if UI_LOCAL is set, UI_GIT_REPO will be ignored.

export UI_LOCAL = /path/to/your/ui

Build

make ui

Rebuild

make -B ui

Clean

make clean/ui