Skip to content

Instantly share code, notes, and snippets.

@CMcDonald82
Created March 15, 2012 22:35
Show Gist options
  • Save CMcDonald82/2047400 to your computer and use it in GitHub Desktop.
Save CMcDonald82/2047400 to your computer and use it in GitHub Desktop.
Gondor manage.py
from django.core.management import execute_manager
import imp
import sys
import os
sys.path.insert(0, os.path.abspath(os.path.join(os.path.abspath(os.path.dirname(__file__)), os.pardir, os.pardir)))
sys.path.insert(0, os.path.abspath(os.path.join(os.path.abspath(os.path.dirname(__file__)), os.pardir)))
try:
imp.find_module('settings') # Assumed to be in the same directory.
except ImportError:
#import sys
sys.stderr.write("Error: Can't find the file 'settings.py' in the directory containing %r. It appears you've customized things.\nYou'll have to run django-admin.py, passing it your settings module.\n" % __file__)
sys.exit(1)
import settings
if __name__ == "__main__":
execute_manager(settings)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment