summaryrefslogtreecommitdiffstats
path: root/qtip/web/bench/management/commands/importstatic.py
diff options
context:
space:
mode:
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/")