Questions tagged [django-chronograph]

Django Chronograph is a Python Django script that provides an interface for creating cron jobs in a Django web application that run every minute.

Django Chronograph is a Django script that provides an interface for creating cron jobs in a Django web application that run every minute. It supports Django versions 1.1 and higher.

Relevant Links:

Django Chronograph project homepage
Django Chronograph online documentation

6 questions
3
votes
2 answers

Django custom management commands from admin interface

I asked a previous question getting a django command to run on a schedule. I got a solution for that question, but I still want to get my commands to run from the admin interface. The obstacle I'm hitting is that my custom management commands…
Ed.
  • 4,439
  • 10
  • 60
  • 78
2
votes
2 answers

failed to install django-chronograph in django 1.7

I tried to install django-chronograph to django-1.7 for assigning scheduled task in my django web-app. I followed the instruction as shown here but it gives me the following error when running python manage.py makemigrations or python manage.py…
lokheart
  • 23,743
  • 39
  • 98
  • 169
1
vote
2 answers

Install failed with Django-Chronograph by pip in django 1.10

Similar to this question but i got a different error. I'm try to installing via pip with: pip install django-chronograph I'm using python 2.7 and a virtualenv pip…
César Villaseñor
  • 822
  • 1
  • 7
  • 15
0
votes
1 answer

Chronograf URL not working in AWS

I have installed TICK stack on my EC2 instance. But not able to access the same with http://:8888 . Do i need to any other setup to access the Chronograf interface. Please advise
Sunil
  • 553
  • 1
  • 12
  • 30
0
votes
0 answers

How to setup periodic backups

I have a Django project which has a lot of apps. To backup the database, I am using django-dbbackup. To backup the database, I use this: "python manage.py dbbackup" - This command basically does a backup of the existing database and stores it in a…
thematroids
  • 863
  • 2
  • 9
  • 13
0
votes
3 answers

Run specific django manage.py commands at intervals

I need to run a specific manage.py commands on an EC2 instance every X minutes. For example: python manage.py some_command. I have looked up django-chronograph. Following the instructions, I've added chronograph to my settings.py but on runserver it…
Newtt
  • 6,050
  • 13
  • 68
  • 106