A terminal app that displays OS configuration and limits helpful to debug issues.
There are options how you can run this app:
This runs inside a container, which is helpful if you want to inspect containers
- Build
docker build -f Dockerfile -t limits:latest .- Run
docker run -it limits:latestIf you want to inspect from a local machine or VM, you can run this as script. No need to install any dependencies except uv
uv run limits.pyThis is the approach you take if you want to extend the app. Install and update the dependencies first and then run the app in debug mode like a Pythonista!
- Install dependencies and run
uv syncuv run limits.pyPress q to quit
Press r to refresh
Optional
- textual-dev is added to debug
- ruff for formatting
This allows you to run in debug mode
textual run limits.py