Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 28 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,28 @@
# sandbox
# sandbox

A scratch repo for experiments.

## Layout

| Path | Contents |
| --- | --- |
| `main.py` | Minimal entry point. |
| `runloop_api/` | Scripts against the Runloop API — creating blueprints, running and scoring scenarios, running benchmarks, shutting down devboxes. |
| `app/` | Node todo app from the Docker getting-started tutorial, with `docker-compose.yml`. |
| `docker/` | Standalone Dockerfile experiments. |
| `docs/` | Sphinx docs, published to GitHub Pages by `.github/workflows/sphinx.yml`. |

## Getting started

Requires Python 3.12+ and [uv](https://docs.astral.sh/uv/).

```bash
uv sync
uv run main.py
```

## Docs

```bash
uv run sphinx-build docs docs/_build
```
Loading