> 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/070-10-makefile.md).

# Dica 10 - Criando Makefile

[![](/files/-MfuAP0TTmVUwSHDjaRn)](https://youtu.be/HdsDqWXNHSc)

```
touch Makefile
```

Edite `Makefile`

```
indenter:
    find backend -name "*.html" | xargs djhtml -t 2 -i

autopep8:
    find backend -name "*.py" | xargs autopep8 --max-line-length 120 --in-place

isort:
    isort -m 3 *

up:
    docker-compose up -d

lint: autopep8 isort indenter

```
