Files
awx/awx/ui_next
Seth Foster a41766090e Make ui_next the default UI (#15405)
Change django url dispatcher to serve up ui_next files instead of old ui files

Old UI will not be served with this change

Github CI still runs old ui tests (to be removed in another PR)

Remove the Github workflows that build old UI

---------

Signed-off-by: Seth Foster <fosterbseth@gmail.com>
2024-07-29 15:13:09 -04:00
..
2024-07-29 15:13:09 -04:00
2023-03-22 20:38:54 -04:00
2024-07-29 15:13:09 -04:00

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

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