mirror of
https://github.com/jazzband/django-eav2.git
synced 2026-05-27 00:14:06 +00:00
10 lines
315 B
Python
Executable file
10 lines
315 B
Python
Executable file
#!/usr/bin/env python
|
|
"""Django's command-line utility for administrative tasks."""
|
|
import os
|
|
import sys
|
|
|
|
from django.core.management import execute_from_command_line
|
|
|
|
if __name__ == '__main__':
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'django_test_app.settings')
|
|
execute_from_command_line(sys.argv)
|