From 6c3bbfc3bea8520d45551deda606cade2137dc61 Mon Sep 17 00:00:00 2001 From: Lila Date: Mon, 10 Jul 2023 15:15:30 -0400 Subject: [PATCH] Looking to see if revising the path in the static dir resolves failing ci check. --- awx/settings/defaults.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/awx/settings/defaults.py b/awx/settings/defaults.py index 647c500b21..591af0e998 100644 --- a/awx/settings/defaults.py +++ b/awx/settings/defaults.py @@ -82,6 +82,7 @@ STATICFILES_DIRS = [ os.path.join(BASE_DIR, 'ui_next', 'build'), os.path.join(BASE_DIR, 'static'), ] +/awx_devel/awx/ui_next/build # Absolute filesystem path to the directory where static file are collected via # the collectstatic command. @@ -304,7 +305,7 @@ TEMPLATES = [ os.path.join(BASE_DIR, 'templates'), os.path.join(BASE_DIR, 'ui', 'build'), os.path.join(BASE_DIR, 'ui', 'public'), - os.path.join(BASE_DIR, 'ui_next', 'build', 'awx'), + os.path.join(BASE_DIR, '/awx/ui_next', 'build', 'awx'), ], }, ]