summaryrefslogtreecommitdiffstats
path: root/forum/cron/send_email_alerts_virtualenv
diff options
context:
space:
mode:
Diffstat (limited to 'forum/cron/send_email_alerts_virtualenv')
-rw-r--r--forum/cron/send_email_alerts_virtualenv10
1 files changed, 10 insertions, 0 deletions
diff --git a/forum/cron/send_email_alerts_virtualenv b/forum/cron/send_email_alerts_virtualenv
new file mode 100644
index 00000000..2f1b64d0
--- /dev/null
+++ b/forum/cron/send_email_alerts_virtualenv
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+WORKON_HOME=~/envs/askbot
+PROJECT_ROOT=~/webapps/askbot_server/projects/askbot/
+
+# activate virtual environment
+. $WORKON_HOME/bin/activate
+
+cd $PROJECT_ROOT
+python manage.py send_email_alerts >> $PROJECT_ROOT/log/cron_mail.log 2>&1