46 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env python
 | |
| """Django manage.py"""
 | |
| import os
 | |
| import sys
 | |
| import warnings
 | |
| 
 | |
| from defusedxml import defuse_stdlib
 | |
| 
 | |
| 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."
 | |
|     ),
 | |
| )
 | |
| warnings.filterwarnings(
 | |
|     "ignore",
 | |
|     message=(
 | |
|         "'dbbackup' defines default_app_config = 'dbbackup.apps.DbbackupConfig'. Django now det"
 | |
|         "ects this configuration automatically. You can remove default_app_config."
 | |
|     ),
 | |
| )
 | |
| 
 | |
| defuse_stdlib()
 | |
| 
 | |
| if __name__ == "__main__":
 | |
|     os.environ.setdefault("DJANGO_SETTINGS_MODULE", "authentik.root.settings")
 | |
|     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)
 | 
