Reduce directory struture complexity

This commit is contained in:
Roberto Rosario
2014-06-19 15:42:06 +02:00
parent 9220beb450
commit fed1bb7985
5 changed files with 1 additions and 4 deletions

11
manage.py Executable file
View File

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