Files
zulip/manage.py
Keegan McAllister a130dfb1fb chmod +x manage.py
So you can write "./manage.py" instead of "python manage.py".

(imported from commit 9d00e17195d6c849611f2a0fa6f8927d3410cc2a)
2012-10-25 15:22:18 -04:00

11 lines
249 B
Python
Executable File

#!/usr/bin/env python
import os
import sys
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "humbug.settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)