summaryrefslogtreecommitdiff
path: root/build.py
diff options
context:
space:
mode:
Diffstat (limited to 'build.py')
-rwxr-xr-xbuild.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/build.py b/build.py
new file mode 100755
index 0000000..1c20f4e
--- /dev/null
+++ b/build.py
@@ -0,0 +1,13 @@
+import os
+import sys
+import site
+from os.path import dirname, abspath
+SERVER_ROOT = abspath(dirname(dirname(__file__))) + '/'
+site.addsitedir(SERVER_ROOT + 'venv/lib/python3.4/site-packages')
+os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings")
+sys.path = [SERVER_ROOT, ] + sys.path
+sys.path.insert(0, os.path.join(SERVER_ROOT, "app"))
+sys.path.insert(0, os.path.join(SERVER_ROOT, "app/lib"))
+sys.path.insert(0, os.path.join(SERVER_ROOT, "config"))
+from pages.models import PageGenerator
+PageGenerator(os.path.join(SERVER_ROOT, "_pages")).write_files()