mirror of
https://github.com/ansible/awx.git
synced 2026-01-11 01:57:35 -03:30
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