From 21fe953c233f6e77120f67f126f4f312945b0465 Mon Sep 17 00:00:00 2001 From: Anderson Brandao Date: Fri, 31 Oct 2025 22:02:09 -0300 Subject: [PATCH] Update README with Docker and linting commands Added sections for Docker compose and code linting tools. --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index 03904ac..59807f2 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ Python Stuff # Basic commands +## Docker compose + Build: ```shell docker compose build @@ -18,3 +20,20 @@ Bash into: ```shell docker compose run --rm -it app bash ``` + +## Code linting + +Flake8: +```shell +flake8 . +``` + +Black: +```shell +black . +``` + +Isort: +```shell +isort . +```