b67620b44867b6e82788c5ef51f0343b3a896b49
kent
  Thu Aug 29 20:27:46 2019 -0700
We need this, hopefully won't edit it much since it is big and auto-generated.

diff --git src/hca/hcat/mysite/manage.py src/hca/hcat/mysite/manage.py
new file mode 100755
index 0000000..341863c
--- /dev/null
+++ src/hca/hcat/mysite/manage.py
@@ -0,0 +1,21 @@
+#!/usr/bin/env python
+"""Django's command-line utility for administrative tasks."""
+import os
+import sys
+
+
+def main():
+    os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'mysite.settings')
+    try:
+        from django.core.management import execute_from_command_line
+    except ImportError as exc:
+        raise ImportError(
+            "Couldn't import Django. Are you sure it's installed and "
+            "available on your PYTHONPATH environment variable? Did you "
+            "forget to activate a virtual environment?"
+        ) from exc
+    execute_from_command_line(sys.argv)
+
+
+if __name__ == '__main__':
+    main()