Test htsworkflow under several different django & python versions
[htsworkflow.git] / manage.py
old mode 100644 (file)
new mode 100755 (executable)
index 5e78ea9..8103003
--- a/manage.py
+++ b/manage.py
@@ -1,11 +1,19 @@
-#!/usr/bin/env python
-from django.core.management import execute_manager
-try:
-    import settings # Assumed to be in the same directory.
-except ImportError:
-    import sys
-    sys.stderr.write("Error: Can't find the file 'settings.py' in the directory containing %r. It appears you've customized things.\nYou'll have to run django-admin.py, passing it your settings module.\n(If the file settings.py does indeed exist, it's causing an ImportError somehow.)\n" % __file__)
-    sys.exit(1)
+#!/usr/bin/python3
+import os
+import sys
+import socket
 
 if __name__ == "__main__":
-    execute_manager(settings)
+    hostname = socket.gethostname()
+    host_settings = os.path.join('htsworkflow/settings', hostname + '.py')
+    if os.path.exists(host_settings):
+        module = hostname
+    else:
+        module = 'local'
+    os.environ.setdefault(
+        "DJANGO_SETTINGS_MODULE",
+        "htsworkflow.settings.{}".format(module))
+
+    from django.core.management import execute_from_command_line
+
+    execute_from_command_line(sys.argv)