forked from mdn/kuma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manage.py
executable file
·50 lines (38 loc) · 1.25 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
#!/usr/bin/env python
import os
import site
import sys
ROOT = os.path.dirname(os.path.abspath(__file__))
def path(*parts):
return os.path.join(ROOT, *parts)
prev_sys_path = list(sys.path)
site.addsitedir(path('vendor'))
# Move the new items to the front of sys.path.
new_sys_path = []
for item in list(sys.path):
if item not in prev_sys_path:
new_sys_path.append(item)
sys.path.remove(item)
sys.path[:0] = new_sys_path
# Now we can import from third-party libraries.
from django.core.management import execute_from_command_line
# Don't try to force a new setting module on us
if 'DJANGO_SETTINGS_MODULE' not in os.environ:
# use settings_test.py for running tests
if 'test' in sys.argv:
settings_mod = 'settings_test'
else:
# or try the optional "local" settings module first
try:
import settings_local # noqa
except ImportError:
# or use the plain settings.py module
settings_mod = 'settings'
else:
settings_mod = 'settings_local'
# override the env var with what we want
os.environ['DJANGO_SETTINGS_MODULE'] = settings_mod
import jingo.monkey
jingo.monkey.patch()
if __name__ == "__main__":
execute_from_command_line(sys.argv)