aboutsummaryrefslogtreecommitdiffstats
path: root/qtip/web/bench/management/commands/importstatic.py
blob: 471faf8b98f9c341b622f587328208f6ef8ddcc2 (plain)
1
2
3
4
5
6
7
8
9
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/")