Ben Sturmfels
3826b6fb66
The advantage of this approach is that the production and dev configurations are in version control, so there's less opportunity for surprises. As advocated by Jacob Kaplan-Moss (OSCON 2011) and Two Scoops of Django book.
19 lines
669 B
Python
Executable file
19 lines
669 B
Python
Executable file
#!/usr/bin/env python
|
|
"""Django command-line utility for administration tasks.
|
|
|
|
See https://docs.djangoproject.com/en/4.0/ref/django-admin/
|
|
"""
|
|
import os
|
|
import sys
|
|
|
|
if __name__ == '__main__':
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'conservancy.settings.dev')
|
|
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)
|