mirror of
https://github.com/jazzband/django-ddp.git
synced 2026-05-01 12:14:55 +00:00
14 lines
302 B
Python
Executable file
14 lines
302 B
Python
Executable file
#!/usr/bin/env python
|
|
import os
|
|
import sys
|
|
|
|
|
|
if __name__ == "__main__":
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "test_project.settings")
|
|
|
|
from dddp import greenify
|
|
greenify()
|
|
|
|
from django.core.management import execute_from_command_line
|
|
|
|
execute_from_command_line(sys.argv)
|