mirror of
https://github.com/ansible/awx.git
synced 2026-01-16 04:10:44 -03:30
* Fast fix for old version nodejs
Fixing error
required: { node: '^18.0.0 || >=20.0.0' },
current: { node: 'v16.13.1', npm: '8.5.0' }
* Use node js 18 by default to align with official docs
---------
Co-authored-by: Seth Foster <fosterseth@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