47 lines
816 B
Markdown
47 lines
816 B
Markdown
---
|
|
title: Dough Calc
|
|
subtitle: A tiny utility to calculate the proportions of flour, water, sourdough and salt for your dough.
|
|
date: 2025-12-29T09:10:27+0100
|
|
id: 20251229091027
|
|
tags: ["python", "calculator", "bread", "dough", "sourdough"]
|
|
---
|
|
|
|
# [Dough Calc][1]
|
|
|
|
Dough Calc is a tiny utility to calculate the proportions of flour, water,
|
|
sourdough and salt for your dough, depending on the main flour quantity, the
|
|
main proportion of water you're aiming for, and the proportion of water of your
|
|
sourdough.
|
|
|
|
## Development
|
|
|
|
To start a dev environment:
|
|
|
|
```bash
|
|
git clone https://git.milhit.ch/igor/dough-calc.git
|
|
cd dough-calc
|
|
uv sync
|
|
cd web
|
|
npm install
|
|
```
|
|
|
|
## Tests
|
|
|
|
To run the tests:
|
|
|
|
```bash
|
|
uv run pytest
|
|
```
|
|
|
|
## Linting
|
|
|
|
To run linting checks:
|
|
|
|
```bash
|
|
uv run ruff check --fix
|
|
```
|
|
|
|
<!-- references -->
|
|
|
|
[1]: /
|