BioWorkflows LLC
                                            BioWorkflows LLC
                                        
                                    When I run `makemigrations` for my own project, `django` always generates a migration for `django-siteflags`, `site-packages/siteflags/migrations/0002_alter_flag_content_type_alter_flag_user.py` ```python # Generated by Django 4.2.1 on 2023-06-09 13:57 from django.conf import settings from...
### Summary: The database backend of my website crashes today. Upon inspection, I found all slots are filled with database query, and ran more than 8 hrs. ``` SELECT "django_celery_beat_periodictasks"."ident",...
Many thanks for this very useful extension. I have successfully implemented it with my own site following your instructions, with just one caveat. I have a bootstrap header with `sticky-top`...
I have described my problem in https://stackoverflow.com/questions/76880897/django-running-async-code-in-wsgi-mode-causes-synchronousonlyoperation-error . Basically, I am running a Django application on top of `unicorn --worker-class gevent`. I implemented one view function using asyncio and received...
When I run `makemigrations` for my own project, `django` always generates a migration for `reviews`, `site-packages/reviews/migrations/0003_alter_review_content_type_alter_review_user.py` ```python # Generated by Django 4.2.1 on 2023-06-09 13:57 from django.conf import settings from...
As explained in [this stack overflow post](https://stackoverflow.com/questions/76880897/django-running-async-code-in-wsgi-mode-causes-synchronousonlyoperation-error) , we are running a Django server on gunicorn with gevent workers. The entire website is running in sync mode but we made...