src/manage.py
author cavaliet
Wed, 04 Sep 2013 16:56:55 +0200
changeset 36 08cffedf6e60
parent 0 81e7900b06a7
permissions -rw-r--r--
first step of semantic tree, just to save. it will not be used as this in this project.

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

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

    from django.core.management import execute_from_command_line

    execute_from_command_line(sys.argv)