Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/simonw/datasette-plugin-template-repository-demo
Demo of datasette-plugin-template-repository
https://github.com/simonw/datasette-plugin-template-repository-demo
Last synced: 28 days ago
JSON representation
Demo of datasette-plugin-template-repository
- Host: GitHub
- URL: https://github.com/simonw/datasette-plugin-template-repository-demo
- Owner: simonw
- License: apache-2.0
- Created: 2024-02-01T20:57:50.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-02-01T20:58:11.000Z (10 months ago)
- Last Synced: 2024-10-07T13:54:01.653Z (about 1 month ago)
- Language: Python
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# datasette-plugin-template-repository-demo
[![PyPI](https://img.shields.io/pypi/v/datasette-plugin-template-repository-demo.svg)](https://pypi.org/project/datasette-plugin-template-repository-demo/)
[![Changelog](https://img.shields.io/github/v/release/simonw/datasette-plugin-template-repository-demo?include_prereleases&label=changelog)](https://github.com/simonw/datasette-plugin-template-repository-demo/releases)
[![Tests](https://github.com/simonw/datasette-plugin-template-repository-demo/actions/workflows/test.yml/badge.svg)](https://github.com/simonw/datasette-plugin-template-repository-demo/actions/workflows/test.yml)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/simonw/datasette-plugin-template-repository-demo/blob/main/LICENSE)Demo of datasette-plugin-template-repository
## Installation
Install this plugin in the same environment as Datasette.
```bash
datasette install datasette-plugin-template-repository-demo
```
## UsageUsage instructions go here.
## Development
To set up this plugin locally, first checkout the code. Then create a new virtual environment:
```bash
cd datasette-plugin-template-repository-demo
python3 -m venv venv
source venv/bin/activate
```
Now install the dependencies and test dependencies:
```bash
pip install -e '.[test]'
```
To run the tests:
```bash
pytest
```