2018-11-11 12:40:42 +00:00
|
|
|
#!/usr/bin/env python
|
2018-11-27 09:56:40 +00:00
|
|
|
"""Django manage.py"""
|
2018-11-11 12:40:42 +00:00
|
|
|
import os
|
|
|
|
import sys
|
2021-08-08 22:27:29 +00:00
|
|
|
import warnings
|
2020-06-19 17:34:27 +00:00
|
|
|
|
2020-02-21 08:00:28 +00:00
|
|
|
from defusedxml import defuse_stdlib
|
|
|
|
|
2021-08-08 22:27:29 +00:00
|
|
|
warnings.filterwarnings(
|
|
|
|
"ignore",
|
|
|
|
message="defusedxml.lxml is no longer supported and will be removed in a future release.",
|
|
|
|
)
|
|
|
|
warnings.filterwarnings(
|
|
|
|
"ignore",
|
|
|
|
message="defusedxml.cElementTree is deprecated, import from defusedxml.ElementTree instead.",
|
|
|
|
)
|
|
|
|
warnings.filterwarnings(
|
|
|
|
"ignore",
|
|
|
|
message=(
|
|
|
|
"'django_prometheus' defines default_app_config = 'django_prometheus.apps.DjangoPromethe"
|
|
|
|
"usConfig'. Django now detects this configuration automatically. You can remove d"
|
|
|
|
"efault_app_config."
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
2020-02-21 08:00:28 +00:00
|
|
|
defuse_stdlib()
|
2018-11-11 12:40:42 +00:00
|
|
|
|
2020-05-08 16:45:53 +00:00
|
|
|
if __name__ == "__main__":
|
2020-12-05 21:08:42 +00:00
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "authentik.root.settings")
|
2018-11-11 12:40:42 +00:00
|
|
|
try:
|
|
|
|
from django.core.management import execute_from_command_line
|
|
|
|
except ImportError as exc:
|
|
|
|
raise ImportError(
|
|
|
|
"Couldn't import Django. Are you sure it's installed and "
|
|
|
|
"available on your PYTHONPATH environment variable? Did you "
|
|
|
|
"forget to activate a virtual environment?"
|
|
|
|
) from exc
|
|
|
|
execute_from_command_line(sys.argv)
|