public
Description: my personal blog written with django
Homepage: http://oebfare.com
Clone URL: git://github.com/brosner/oebfare.git
oebfare / manage.py
100755 25 lines (17 sloc) 0.677 kb
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
#!/usr/bin/env python
import sys
 
from os.path import abspath, dirname, join
from site import addsitedir
 
sys.path.insert(0, abspath(join(dirname(__file__), "externals")))
 
from django.conf import settings
from django.core.management import setup_environ, execute_from_command_line
 
try:
    import settings as settings_mod # Assumed to be in the same directory.
except ImportError, e:
    sys.stderr.write("cannot find settings: %s\n" % e)
    sys.exit(1)
 
# setup the environment before we start accessing things in the settings.
setup_environ(settings_mod)
 
sys.path.insert(0, join(settings.PROJECT_ROOT, "apps"))
 
if __name__ == "__main__":
    execute_from_command_line()