I'm working on the Django rest framework project and I need to work with gRPC as well. But I don't know how to manage to run both HTTP server and gRPC server same time. Like in .NET it has option to listen both HTTP1 and HTTP2.
When I use command
python manage.py runserver
then gRPC doesn't work
and when I used
python manage.py grpcserver
then Rest API doesn't work
Is there any solution to this problem? Thanks.
I used packages: djangorestframework and django-grpc