Schule als Staat Projekt Web, Dokumente, etc.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 line
371B

  1. #!/usr/bin/env python3
  2. import os
  3. import sys
  4. import platform
  5. if __name__ == "__main__":
  6. if platform.system() == "Darwin":
  7. import pymysql
  8. pymysql.install_as_MySQLdb()
  9. os.environ.setdefault("DJANGO_SETTINGS_MODULE", "sas_web.settings")
  10. from django.core.management import execute_from_command_line
  11. execute_from_command_line(sys.argv)