1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-04-27 19:05:16 +00:00
seahub/manage.py

11 lines
249 B
Python
Raw Normal View History

2012-07-07 15:11:06 +00:00
#!/usr/bin/env python
import os
import sys
2011-03-19 05:15:02 +00:00
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "seahub.settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)