Metadata-Version: 2.1
Name: datasette-ui-extras
Version: 0.29
Summary: Adds UI enhancements to Datasette
Home-page: https://github.com/cldellow/datasette-ui-extras
Author: Colin Dellow
License: Apache License, Version 2.0
Project-URL: Issues, https://github.com/cldellow/datasette-ui-extras/issues
Project-URL: CI, https://github.com/cldellow/datasette-ui-extras/actions
Project-URL: Changelog, https://github.com/cldellow/datasette-ui-extras/releases
Classifier: Framework :: Datasette
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: test
License-File: LICENSE

# datasette-ui-extras

[![PyPI](https://img.shields.io/pypi/v/datasette-ui-extras.svg)](https://pypi.org/project/datasette-ui-extras/)
[![Changelog](https://img.shields.io/github/v/release/cldellow/datasette-ui-extras?include_prereleases&label=changelog)](https://github.com/cldellow/datasette-ui-extras/releases)
[![Tests](https://github.com/cldellow/datasette-ui-extras/workflows/Test/badge.svg)](https://github.com/cldellow/datasette-ui-extras/actions?query=workflow%3ATest)
[![codecov](https://codecov.io/gh/cldellow/datasette-ui-extras/branch/main/graph/badge.svg?token=QRV8VXYKTW)](https://codecov.io/gh/cldellow/datasette-ui-extras)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/cldellow/datasette-ui-extras/blob/main/LICENSE)

This plugin aims to be a batteries-included theme that makes Datasette more like a self-hosted Airtable or Notion.

You can share read-only access, while still allowing authenticated users to edit data.

## Demo

You can see a demo at https://dux.fly.dev/

## User documentation

See our documentation site at https://dux.cldellow.com

## Development

To set up this plugin locally, first checkout the code. Then create a new virtual environment:

    cd datasette-ui-extras
    python3 -m venv venv
    source venv/bin/activate

Now install the dependencies and test dependencies:

    pip install -e '.[test]'

To run the tests:

    pytest

