Getting Started With Django Celery Beat

Поделиться
HTML-код
  • Опубликовано: 23 ноя 2024

Комментарии • 12

  • @ThisIsAled
    @ThisIsAled 4 дня назад

    Thank you very much for this video, I was able to get celery beat working in my app by following it. You do a great job, appreciate the content you are poutting out 👏👏

  • @benabdoulnassirekabore5314
    @benabdoulnassirekabore5314 Год назад +1

    Thank you so much. What's your favorite between Flask and Django ? It's very hard for me to choose one when i want to start a new project 😅

  • @centralcoding
    @centralcoding Месяц назад

    Hey, im new to celery beat, do you have recent tutor on this topic, i mean, i need to start from scratch
    .

  • @testGold1
    @testGold1 10 месяцев назад

    Thank you. you are the BEST!

  • @DagoGallo
    @DagoGallo 7 месяцев назад

    How do i set up the timezone?
    I do not want celery to get UTC time.
    Thanks for any comments/advices

  • @alexdin1565
    @alexdin1565 8 месяцев назад

    please if you can make video on how to deploy celery on vps
    at this time I can't pay for the coaching

  • @centralcoding
    @centralcoding Месяц назад

    I thin this is what i wanted

  • @rubenssouzaoficial-m2e
    @rubenssouzaoficial-m2e 8 месяцев назад

    wierd my task wont start, however if scheduled (beats) it runs like a charm

  • @youbra4267
    @youbra4267 Год назад +1

    thank you

  • @jitjena5291
    @jitjena5291 9 месяцев назад

    The imports from the model is not working it's throwing the errors as there's is nothing called these tables

  • @reelingua
    @reelingua 7 месяцев назад

    Why do background tasks require an endpoint (urls.py)? Surely those can then be triggered by public users (if they guess the endpoint correctly
    )? I would have thought that background tasks simply live withing tasks.py and are triggered my the application without exposing an endpoint ... ?

    • @Jonathan-zp2uu
      @Jonathan-zp2uu 7 месяцев назад

      I think he’s just demonstrating that if you were building an application where you’d like users to be able to dynamically create/modify tasks that they could from your app frontend by making a call to an endpoint (think like IT admin dashboard type apps where allowing the user to schedule some kind of scan is pretty common) Otherwise, yea if you’re just wanting to setup tasks that you want the app to process in the background without anyone ever touching then just create the schedule in the admin panel that invokes your premade task and you’re good to go.