kvjcw

Results 4 issues of kvjcw

How to Graceful Restart the iris project ??? i know how to graceful restart gin project (use endless) but not iris

🤔 type:question

class Option(models.Model): """ """ lr = models.CharField() class Meta: abstract = True def __str__(self): return self.lr class StudentsModel(models.Model): """ """ name = models.CharField('name',default='',max_length=10) lrs = models.ArrayField(model_container=Option,blank=True) class Meta: db_table =...

How to get the request.url in midddleware after_request