From e26f6eb3309a6b927f9109ad304cbbcc42ea9b1c Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Sat, 2 May 2026 11:14:56 +0200 Subject: [PATCH] added readme --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..a19aebd --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# stand + +An editable, filterable and sortable spreadsheet (via [AG Grid](https://www.ag-grid.com/)) webapp (via [NiceGUI](https://nicegui.io/)) with REST API (via [FastAPI](https://fastapi.tiangolo.com/)) using [Pandas](https://pandas.pydata.org/) [DataFrames](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.html) backed by [ArcticDB](https://arcticdb.io/). + +## Setup the environment + +```bash +pixi install +``` + +## Start the webapp + +```bash +pixi shell +./stand.py +``` + +## Interact in the browser + +- **edit**: double click a cell +- **filter**: click the filter icon on a column head +- **sort**: click a column head (cycles through ascending, descending, chronological) +