1
0
Fork 0
mirror of https://github.com/Findus23/RPGnotes.git synced 2024-09-19 15:43:45 +02:00

add scss compilation command

This commit is contained in:
Lukas Winkler 2021-09-07 14:59:52 +02:00
parent 3b3b47fe5b
commit 48547967e9
Signed by: lukas
GPG key ID: 54DE4D798D244853

View file

@ -0,0 +1,10 @@
from django.core.management.base import BaseCommand
from utils.assets import save_css
class Command(BaseCommand):
help = 'compile scss'
def handle(self, *args, **kwargs):
save_css()