Initial import of skeleton project

This commit is contained in:
2012-10-19 21:06:44 +01:00
parent a8e3ab484f
commit e65726056b
8 changed files with 211 additions and 0 deletions

10
django_ett/manage.py Executable file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env python
import os
import sys
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "django_ett.settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)