chrisspen/django-chroniker

What about wiki, mm?

Atmyre opened this issue · 6 comments

I'm sorry, if it's not the right place to write about it, but:

I'd really like to use your extension, but, unfortunately, I didn't manage to find django admin parameters guide yet (in particular, I can't understand how to make jobs be performed not in every minute, but in different periods of time and what are "options" in admin job creation page?..)

If I'm mistaken and what I need lays somewhere next to me, please, tell me about it)

Regarding intervals you set how often you would like a job to be executed and then add 'interval=' as an parameter.
For example if you want to execute a job every 30 minutes just set frequency as 'minutely' and in the params field add 'interval=30'

Ok, That's great, thank you very much, but ndeed, what should I do if I want to understand how any other parameters\fields work? Is there any wiki or better readme?(

Check this out http://labix.org/python-dateutil
Look at 'interval'.

Thank you very much for clarifying case with interval, I got it)
I'm sorry for disturbing you, and you really helped me

But now I'm facing another problem with, it seems, google api:
" usage: manage.py [-h] [--auth_host_name AUTH_HOST_NAME][--noauth_local_webserver][--auth_host_port [AUTH_HOST_PORT [AUTH_HOST_PORT ...]]][--logging_level {DEBUG,INFO,WARNING,ERROR,CRITICAL}]
manage.py: error: unrecognized arguments: cronserver" 

Anyway, I'll try to fix it)

P.S Formatting from yandex mail doesn't work well

Actually you need to run it like this:
manage.py cron

Thank you very much)