9 lines
166 B
Python
9 lines
166 B
Python
from os import environ
|
|
|
|
import django
|
|
|
|
environ.setdefault("DJANGO_SETTINGS_MODULE", "authentik.root.settings")
|
|
django.setup()
|
|
|
|
from authentik.core.models import User
|