Files
pepperplus-cb/README.md
Kasper Marinus 5518763ad5 chore: add .gitignore and README base
Very basic README, to be expanded in the future.

ref: N25B-144
2025-10-08 13:17:53 +02:00

20 lines
515 B
Markdown

## Development environment
We begin by installing UV (very nice utility for managing packages and Python version):
```bash
# On macOS and Linux.
curl -LsSf https://astral.sh/uv/install.sh | sh
```
```bash
# On Windows.
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
```
Using UV, installing the packages and virtual environment is as simple as typing the following (inside the root directory of this repository):
```bash
uv sync
```
## Running
<!-- TODO: run instructions -->