> For the complete documentation index, see [llms.txt](https://www.dicas-de-django.com.br/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.dicas-de-django.com.br/055-runserver_plus.md).

# Dica 55 - Rodando Django em https localmente com runserver\_plus

[![](/files/-MfuAOwUjEsk4qZiRsOx)](https://youtu.be/4nI3lcUAeC4)

Github: <https://github.com/rg3915/dicas-de-django>

```
pip install Werkzeug
```

```
python manage.py runserver_plus --print-sql
```

## HTTPS

```
pip install pyOpenSSL
python manage.py runserver_plus --cert-file /tmp/cert.crt
```

Entre em <https://localhost:8000>
