aboutsummaryrefslogtreecommitdiffstats
path: root/qtip/web/bench/management/commands/importstatic.py
diff options
context:
space:
mode:
authorYujun Zhang <zhang.yujunz@zte.com.cn>2017-08-16 08:43:35 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-08-16 08:43:35 +0000
commitfa7d89ee68d4b345530c6bc036d80ebbc0a1fc04 (patch)
treea408d01980a15e89e1b5efb7ceb743fae23d4052 /qtip/web/bench/management/commands/importstatic.py
parentd602404a17f1935a524e8fc46ed853d4c7717164 (diff)
parent2364c5886b6e4fa34355d0e300ebd9aae0ba8ffc (diff)
Merge "Add basic ui"
Diffstat (limited to 'qtip/web/bench/management/commands/importstatic.py')
-rw-r--r--qtip/web/bench/management/commands/importstatic.py10
1 files changed, 10 insertions, 0 deletions
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/")