public-health-ch/manage.py

11 lines
255 B
Python
Raw Normal View History

#!/usr/bin/env python
import os
import sys
if __name__ == "__main__":
2016-12-09 05:13:01 +00:00
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "publichealth.settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)