forked from dimagi/commcare-hq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manage.py
executable file
·52 lines (38 loc) · 1.53 KB
/
manage.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
import sys
import os
def _set_source_root_parent(source_root_parent):
"""
add everything under `source_root_parent` to the list of source roots
e.g. if you call this with param 'submodules'
and you have the file structure
project/
submodules/
foo-src/
foo/
bar-src/
bar/
(where foo and bar are python modules)
then foo and bar would become top-level importable
"""
filedir = os.path.dirname(__file__)
submodules_list = os.listdir(os.path.join(filedir, source_root_parent))
for d in submodules_list:
if d == "__init__.py" or d == '.' or d == '..':
continue
sys.path.insert(1, os.path.join(filedir, source_root_parent, d))
sys.path.append(os.path.join(filedir, source_root_parent))
def _set_source_root(source_root):
filedir = os.path.dirname(__file__)
sys.path.insert(1, os.path.join(filedir, source_root))
if __name__ == "__main__":
_set_source_root_parent('submodules')
_set_source_root(os.path.join('corehq', 'ex-submodules'))
_set_source_root(os.path.join('custom', '_legacy'))
# proxy for whether we're running gunicorn with -k gevent
if "gevent" in sys.argv:
from restkit.session import set_session; set_session("gevent")
from gevent.monkey import patch_all; patch_all()
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)