Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Python Stuff

# Basic commands

## Docker compose

Build:
```shell
docker compose build
Expand All @@ -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 .
```