Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cldellow/datasette-ui-extras
Add editing UI and other power-user features to Datasette.
https://github.com/cldellow/datasette-ui-extras
datasette datasette-io datasette-plugin
Last synced: 2 months ago
JSON representation
Add editing UI and other power-user features to Datasette.
- Host: GitHub
- URL: https://github.com/cldellow/datasette-ui-extras
- Owner: cldellow
- License: apache-2.0
- Created: 2023-01-22T17:07:59.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-04T23:27:38.000Z (almost 2 years ago)
- Last Synced: 2024-10-25T09:15:15.723Z (2 months ago)
- Topics: datasette, datasette-io, datasette-plugin
- Language: Python
- Homepage:
- Size: 1.51 MB
- Stars: 12
- Watchers: 1
- Forks: 1
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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/activateNow install the dependencies and test dependencies:
pip install -e '.[test]'
To run the tests:
pytest