Metadata-Version: 2.4
Name: datasette-sidebar
Version: 0.0.1a2
Summary: Add a user-configurable sidebar for starring databases, tables, and rows
Author: Alex Garcia
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/datasette/datasette-sidebar
Project-URL: Changelog, https://github.com/datasette/datasette-sidebar/releases
Project-URL: Issues, https://github.com/datasette/datasette-sidebar/issues
Project-URL: CI, https://github.com/datasette/datasette-sidebar/actions
Classifier: Framework :: Datasette
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: datasette>=1.0a23
Requires-Dist: datasette-plugin-router>=0.0.1a2
Requires-Dist: datasette-vite>=0.0.1a3
Requires-Dist: pydantic>=2
Requires-Dist: python-ulid>=3
Requires-Dist: sqlite-migrate>=0.1b0
Requires-Dist: sqlite-utils>=3.38
Dynamic: license-file

# datasette-sidebar

[![PyPI](https://img.shields.io/pypi/v/datasette-sidebar.svg)](https://pypi.org/project/datasette-sidebar/)
[![Changelog](https://img.shields.io/github/v/release/datasette/datasette-sidebar?include_prereleases&label=changelog)](https://github.com/datasette/datasette-sidebar/releases)
[![Tests](https://github.com/datasette/datasette-sidebar/actions/workflows/test.yml/badge.svg)](https://github.com/datasette/datasette-sidebar/actions/workflows/test.yml)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/datasette/datasette-sidebar/blob/main/LICENSE)

Add a user-configurable sidebar for staring databases, tables, or apps

## Installation

Install this plugin in the same environment as Datasette.
```bash
datasette install datasette-sidebar
```
## Usage

Usage instructions go here.

## Development

To set up this plugin locally, first checkout the code. You can confirm it is available like this:
```bash
cd datasette-sidebar
# Confirm the plugin is visible
uv run datasette plugins
```
To run the tests:
```bash
uv run pytest
```
