Merge pull request #80 from bugsink/sourcemaps-spike

Sourcemaps: first version
This commit is contained in:
Klaas van Schelven
2025-04-14 11:08:19 +02:00
committed by GitHub
30 changed files with 966 additions and 7 deletions

View File

@@ -0,0 +1,11 @@
from django.core.management.base import BaseCommand
from bsmain.models import AuthToken
class Command(BaseCommand):
help = "Creates an auth_token and prints it on screen"""
def handle(self, *args, **options):
auth_token = AuthToken.objects.create()
print(auth_token.token)