From 639cd5db77064c275253828780c17ae59551d95c Mon Sep 17 00:00:00 2001 From: maxbr Date: Fri, 29 Jul 2016 12:43:43 +0200 Subject: import pharos dashboard code JIRA: RELENG-12 The last commit was missing some JS/CSS dependencies of the site. This happened because they are in folders that are named 'build' or 'dist'. This commit adds a bower.json file, that specifies dependencies. Dependencies can now be installed by running 'bower install' in the dashboard/static folder. Change-Id: I054f319c66771f767e97711cb678d79d3bd6bee4 Signed-off-by: maxbr --- pharos-dashboard/dashboard/apps.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 pharos-dashboard/dashboard/apps.py (limited to 'pharos-dashboard/dashboard/apps.py') diff --git a/pharos-dashboard/dashboard/apps.py b/pharos-dashboard/dashboard/apps.py new file mode 100644 index 0000000..50878e7 --- /dev/null +++ b/pharos-dashboard/dashboard/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class DashboardConfig(AppConfig): + name = 'dashboard' -- cgit 1.2.3-korg