Re: Running a celery worker as a windows service

2018-06-21 Thread Mohammed Noor
but not sure if they're compatible with windows. > > > On Thursday, June 21, 2018 at 3:50:03 AM UTC-4, Mohammed Noor wrote: >> >> Hello guys, >> >> I have a celery worker that I need to be running on a server 24/7. >> Currently, I am running it in a cmd window. Bu

Running a celery worker as a windows service

2018-06-21 Thread Mohammed Noor
, Mohammed Noor -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this group, send email to dj

Re: Redirecting django app webpages through celery task

2018-06-12 Thread Mohammed Noor
/posts/celery-best-practices/ > https://blog.balthazar-rouberol.com/celery-best-practices > https://khashtamov.com/en/celery-best-practices-practical-approach/ > > > On Monday, June 11, 2018 at 9:14:42 AM UTC-4, Mohammed Noor wrote: >> >> Hello guys, >> >> I need to create

Redirecting django app webpages through celery task

2018-06-11 Thread Mohammed Noor
Hello guys, I need to create a django application that takes a repository url, builds the code located in the url location and runs a few tests. If the tests are successfull, it tags the code and then sends an email to the user notifying the same. Because the building process takes a long time,

Progress bar with celery

2018-06-06 Thread Mohammed Noor
Hello guys, I have been trying to create a progress bar in my django application using celery. But i have been greatly unsuccessful in trying to make it work. It would be great if i can get some examples/tutorials which show how to do it. The problem im facing is, my configured tasks aren’t

Re: Implementing a 'please wait' page

2018-06-01 Thread Mohammed Noor
Wow. Yeah. That scenario of 100 users hitting together...honestly, I haven't thought much about it. Would using celery help me overcome this problem? > On 01-Jun-2018, at 4:33 PM, Jason wrote: > > you can with celery, just make a view that checks the task ID of the task and > if its PENDING,

Re: Implementing a 'please wait' page

2018-06-01 Thread Mohammed Noor
Thanks Mark! I will surely have a look at them. But I was hoping if there was a way of getting this done using ajax or jquery. Mohammed Noor On Fri, Jun 1, 2018 at 11:55 AM, Mark Phillips wrote: > Have you looked at celery (http://www.celeryproject.org/) to handle the > long running p

Implementing a 'please wait' page

2018-05-31 Thread Mohammed Noor
() is executed when user clicks on submit button. Appreciate your help! Thanks and Have a great day, Mohammed Noor -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails fro

Re: href not working

2018-05-31 Thread Mohammed Noor
I think the mistake is using a '/' before the name inside href. Try changing it from href= '/contact'/ to href= 'contact/' Have a great day > On 31-May-2018, at 9:26 AM, Caleb Bryson wrote: > > So i am trying to create a directory with a Home,Blog,and Contact selection. > But every time i