2009-06-08 16:08:59 +00:00
|
|
|
#!/usr/bin/env python
|
2010-06-23 05:23:55 +00:00
|
|
|
import os
|
2016-02-19 16:32:12 +00:00
|
|
|
import sys
|
2010-06-23 05:23:55 +00:00
|
|
|
|
|
|
|
root_dir = os.path.normpath(os.path.abspath(os.path.dirname(__file__)))
|
|
|
|
os.chdir(root_dir)
|
|
|
|
|
|
|
|
#using virtualenv's activate_this.py to reorder sys.path
|
|
|
|
activate_this = os.path.join(root_dir, '..', 'bin', 'activate_this.py')
|
|
|
|
execfile(activate_this, dict(__file__=activate_this))
|
|
|
|
|
|
|
|
|
2009-06-08 16:08:59 +00:00
|
|
|
if __name__ == "__main__":
|
2016-02-19 16:32:12 +00:00
|
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
|
|
|
|
from django.core.management import execute_from_command_line
|
|
|
|
import settings
|
2012-04-20 10:22:32 +00:00
|
|
|
if not os.path.exists(settings.SITE_CONFIG):
|
|
|
|
import sys
|
|
|
|
sys.stderr.write("Error: Can't find '%s'.\nBefore you run pan.do/ra you must create it\n" % settings.SITE_CONFIG)
|
|
|
|
sys.exit(1)
|
2016-02-19 16:32:12 +00:00
|
|
|
execute_from_command_line(sys.argv)
|
2013-07-13 14:46:48 +00:00
|
|
|
import app.config
|
|
|
|
app.config.shutdown()
|