From 2364c5886b6e4fa34355d0e300ebd9aae0ba8ffc Mon Sep 17 00:00:00 2001 From: akhilbatra898 Date: Tue, 8 Aug 2017 23:09:51 +0530 Subject: Add basic ui - Repos Listing - Creation and updation - Running Benchmarking - Listed and detailed view of logs - Add django management command to import frontend dependencies Change-Id: If6f7dbc1fc18b022d9dda7a76f76dfee1c110450 Signed-off-by: akhilbatra898 --- qtip/web/bench/management/commands/importstatic.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 qtip/web/bench/management/commands/importstatic.py (limited to 'qtip/web/bench/management/commands/importstatic.py') diff --git a/qtip/web/bench/management/commands/importstatic.py b/qtip/web/bench/management/commands/importstatic.py new file mode 100644 index 00000000..471faf8b --- /dev/null +++ b/qtip/web/bench/management/commands/importstatic.py @@ -0,0 +1,10 @@ +import os + +from django.core.management.base import BaseCommand + + +class Command(BaseCommand): + help = 'Import frontend dependencies for serving as static files' + + def handle(self, *args, **options): + os.system("git clone https://github.com/gurayyarar/AdminBSBMaterialDesign.git bench/static/") -- cgit 1.2.3-korg