stagestatus/manage.py

11 lines
254 B
Python
Raw Normal View History

2017-03-30 02:43:40 +00:00
#!/usr/bin/env python
import os
import sys
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "stagestatus.settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)