mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-02-14 02:20:56 +03:00
12 lines
311 B
Python
12 lines
311 B
Python
#!/usr/bin/env python
|
|
import os
|
|
import sys
|
|
|
|
if __name__ == "__main__":
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings")
|
|
os.environ.setdefault("DJANGO_CONFIGURATION", "Local")
|
|
|
|
from configurations.management import execute_from_command_line
|
|
|
|
execute_from_command_line(sys.argv)
|