ldt/web/manage.py
author ymh <ymh.work@gmail.com>
Wed, 07 Nov 2012 11:48:38 +0100
changeset 37 b4ed8cdc654c
parent 1 08f6e99af174
permissions -rwxr-xr-x
update virtualenv + create the first file structure

#!/usr/bin/env python
import os
import sys

if __name__ == "__main__":
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "ldtplatform.settings")

    from django.core.management import execute_from_command_line

    execute_from_command_line(sys.argv)