No description
Find a file
bronsen e50f243cbf
Some checks failed
ci/woodpecker/push/workflow/2 Pipeline failed
ci/woodpecker/push/workflow/1 Pipeline failed
[ci] and now we are back to before when we had -e . in requirements.txt
2025-12-09 23:45:17 +01:00
.woodpecker [ci] and now we are back to before when we had -e . in requirements.txt 2025-12-09 23:45:17 +01:00
__snapshots__/tests test(ui): Add snapshot test for our first very simple Screen 2025-12-04 20:17:56 +01:00
src/teilchensammler_cli create settings module in preparation of aerich 2025-12-09 21:35:48 +01:00
.gitignore [git] keep all the sqlite files off of version control 2025-12-08 17:53:44 +01:00
justfile [deps] this seems a better to export dependencies 2025-12-09 23:39:01 +01:00
pyproject.toml configure ruff 2025-12-09 21:36:44 +01:00
README.md [models] move Models into their own module 2025-12-08 17:38:54 +01:00
requirements.dev.txt [deps] this seems a better to export dependencies 2025-12-09 23:39:01 +01:00
requirements.txt [deps] this seems a better to export dependencies 2025-12-09 23:39:01 +01:00
tests.py test(ui): Add snapshot test for our first very simple Screen 2025-12-04 20:17:56 +01:00
uv.lock [deps] update dependencies 2025-12-09 21:37:42 +01:00

Teilchensammler

This is a little TUI based on Textual for entering new Teilchen and for searching for existing Teilchen.

Data will eventuall be stored in a SQLite database.

Running tests

uv run pytest tests.py

Observing the app's console

You will need two terminals: one for showing the console, the other to run the app.

Since we use uv the incantation is bit different from the official documenation:

In one terminal:

textual console

And in the other:

uv run textual run --dev src/teilchensammler_cli/__init__.py

Creating a new release

  • make code changes
  • add tests; make them pass
  • commit
  • git tag vX.Y.Z
  • push commits and tags

uv build will now create correctly named tar balls and wheels.