Add basic django app and file serving for ui_next

This commit is contained in:
Jake McDermott
2020-05-15 09:57:30 -04:00
parent fa53cdf329
commit 12a22d2442
4 changed files with 18 additions and 0 deletions

View File

@@ -94,6 +94,7 @@ USE_TZ = True
STATICFILES_DIRS = (
os.path.join(BASE_DIR, 'ui', 'static'),
os.path.join(BASE_DIR, 'ui_next', 'build', 'static'),
os.path.join(BASE_DIR, 'static'),
)
@@ -253,6 +254,7 @@ TEMPLATES = [
},
'DIRS': [
os.path.join(BASE_DIR, 'templates'),
os.path.join(BASE_DIR, 'ui_next', 'build'),
],
},
]