docs: restructure docs into diataxis (#121)

This commit is contained in:
banteg
2026-01-13 15:59:27 +04:00
committed by GitHub
parent d0e9a51a0f
commit e292c99ab0
52 changed files with 1538 additions and 1255 deletions
+32
View File
@@ -0,0 +1,32 @@
# Dev setup
Set up Takopi for local development and run the checks.
## Clone and run
```bash
git clone https://github.com/banteg/takopi
cd takopi
# Run directly with uv (installs deps automatically)
uv run takopi --help
```
## Install locally (optional)
```bash
uv tool install .
takopi --help
```
## Run checks
```bash
uv run pytest
uv run ruff check src tests
uv run ty check .
# Or all at once
just check
```