vote up 2 vote down star
1

Hello I want my customly made django command to be executed every minute, however it seems like python /path/to/project/myapp/manage.py mycommand doesn't seem to work while at the directory python manage.py mycommand works perfectly.

How can I achieve this ? I use /etc/crontab with:

****** root python /path/to/project/myapp/manage.py mycommand
flag

2 Answers

vote up 2 vote down check

I think the problem is that cron is going to run your scripts in a "bare" environment, so your DJANGO_SETTINGS_MODULE is likely undefined. You may want to wrap this up in a shell script that first defines DJANGO_SETTINGS_MODULE

Something like this:

#!/bin/bash

export DJANGO_SETTINGS_MODULE=myproject.settings
/path/to/project/myapp/manage.py mycommand

Make it executable (chmod +x) and then set up cron to run the script instead.

Edit

I also wanted to say that you can "modularize" this concept a little bit and make it such that your script accepts the manage commands as arguments.

#!/bin/bash

export DJANGO_SETTINGS_MODULE=myproject.settings
/path/to/project/myapp/manage.py ${*}

Now, your cron job can simply pass "mycommand" or any other manage.py command you want to run from a cron job.

link|flag
vote up 2 vote down

If you want your django life a lot more simple, use django-command-extensions within your project:

http://code.google.com/p/django-command-extensions/

You'll find a command named "runscript" so you simply add the command to your crontab line:

****** root python /path/to/project/myapp/manage.py runscript mycommand

And such script will execute with django context environment.

Cheers,

H.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.