mirror of
https://github.com/ansible/awx.git
synced 2026-02-14 01:34:45 -03:30
https://github.com/ansible/ansible-ui/pull/792 added configurable public path (which was change to '/' in https://github.com/ansible/ansible-ui/pull/766/files#diff-2606df06d89b38ff979770f810c3c269083e7c0fbafb27aba7f9ea0297179828L128-R157) This PR added the variable when building ui-next
Instruction to build ui_next directly from this directory
Set src of the ui_next repo
Via GIT
export UI_NEXT_GIT_REPO=https://<git repo>
or
export UI_NEXT_GIT_REPO=git@<git repo>
optionally set branch (default is main)
export UI_NEXT_GIT_BRANCH=main
Via symlink to existing clone
NOTE: UI_NEXT_LOCAL have higher precedence than UI_NEXT_GIT_REPO, if UI_NEXT_LOCAL is set, UI_NEXT_GIT_REPO will be ignored.
export UI_NEXT_LOCAL = /path/to/your/ui_next
Build
make ui-next
Rebuild
make -B ui-next
Clean
make clean/ui-next