mirror of
https://github.com/django/django.git
synced 2024-11-22 03:18:31 +01:00
10 lines
241 B
Python
10 lines
241 B
Python
#!/usr/bin/env python
|
|
import sys
|
|
|
|
from django.conf import settings
|
|
from django.core.management import execute_from_command_line
|
|
|
|
if __name__ == "__main__":
|
|
settings.configure(DEBUG=True, CUSTOM=1)
|
|
execute_from_command_line(sys.argv)
|