Update foo-command-line scripts for new deployment model.

(imported from commit 62a1fc9a5d90966d33afe31bdd5f4b80f6754fad)
This commit is contained in:
Tim Abbott 2013-04-12 12:25:14 -04:00
parent ecdb2acf79
commit 28c77382d1
4 changed files with 4 additions and 4 deletions

View File

@ -1,2 +1,2 @@
#!/bin/sh -x
while true; do python manage.py runfcgi socket=$(pwd)/fastcgi-socket outlog=$(pwd)/app.out errlog=$(pwd)/app.err daemonize=False; sleep 1; done
while true; do python /home/humbug/humbug-deployments/current/manage.py runfcgi socket=/home/humbug/humbug-deployments/current/fastcgi-socket outlog=/home/humbug/logs/app.out errlog=/humbug/humbug/logs/app.err daemonize=False; sleep 1; done

View File

@ -1,2 +1,2 @@
#!/bin/sh -x
while true; do python manage.py subscribe_new_users; sleep 1; done
while true; do python /home/humbug/humbug-deployments/current/manage.py subscribe_new_users; sleep 1; done

View File

@ -1,2 +1,2 @@
#!/bin/sh -x
while true; do python manage.py process_user_activity; sleep 1; done
while true; do python /home/humbug/humbug-deployments/current/manage.py process_user_activity; sleep 1; done

View File

@ -1,2 +1,2 @@
#!/bin/sh -x
while true; do python manage.py runtornado localhost:9993; sleep 1; done
while true; do python /home/humbug/humbug-deployments/current/manage.py runtornado localhost:9993; sleep 1; done