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: 5 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 (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-04T23:27:38.000Z (over 2 years ago)
- Last Synced: 2025-05-05T21:12:25.689Z (5 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
[](https://pypi.org/project/datasette-ui-extras/)
[](https://github.com/cldellow/datasette-ui-extras/releases)
[](https://github.com/cldellow/datasette-ui-extras/actions?query=workflow%3ATest)
[](https://codecov.io/gh/cldellow/datasette-ui-extras)
[](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