mirror of
https://github.com/ansible/awx.git
synced 2026-02-01 09:38:10 -03:30
* 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>
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
Via symlink to existing clone
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