Add Base Url to Django Rest Swagger

Viewed 5449

I can't find a way to add the BASE URL to the django rest swagger. I tried adding

SWAGGER_SETTINGS = {
    "base_path": 'localhost:62090/',
}

to settings.py. But its not working.

2 Answers
Related