I can debug my project with breakpoint() function on Django like this.
from django.http import HttpResponse
def index(request):
x = 10
y = 100
z = 110
breakpoint()
return HttpResponse("Hello, world. You're at the polls index.")
However, I can't debug my project on Django with django-rest-framework.
Environment
I can debug my project with
breakpoint()function onDjangolike this.However, I can't debug my project on
Djangowithdjango-rest-framework.Environment