summaryrefslogtreecommitdiff
path: root/app/links
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2015-09-07 17:22:24 +0000
committerluxagraf <sng@luxagraf.net>2015-09-07 17:22:24 +0000
commit6cf2f5b09f3753351abc291cc70c6ae7e1126078 (patch)
treeebd14d3fd9b425eb8d8a88a0cae4034dddf28061 /app/links
parent6ff5d738b9442c92fa6cc36477a3e099eb516f7d (diff)
added comments to my apps, fixed uwsgi config, fixed bug in photo template jquery url, added piwik stats code
Diffstat (limited to 'app/links')
-rw-r--r--app/links/sync_links.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/links/sync_links.py b/app/links/sync_links.py
index 7a0cd9c..a9fa1bf 100644
--- a/app/links/sync_links.py
+++ b/app/links/sync_links.py
@@ -1,6 +1,7 @@
import sys
import os
from os.path import dirname, abspath
+import django
PROJECT_ROOT = abspath(dirname(dirname(dirname(__file__)))) + '/'
#PROJECT_ROOT = abspath(dirname(dirname(__file__)))
sys.path.append(PROJECT_ROOT)
@@ -9,5 +10,6 @@ sys.path.append(PROJECT_ROOT + '/app/lib')
sys.path.append(PROJECT_ROOT + '/config')
sys.path.append('/home/luxagraf/apps/venv/bin/python2.7/')
os.environ['DJANGO_SETTINGS_MODULE'] = 'config.settings'
+django.setup()
from links import retriever
retriever.sync_pinboard_links()