Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/simonw/datasette-insecure-auth-as-root
Extremely unsafe plugin: every Datasette visitor is treated as the root user
https://github.com/simonw/datasette-insecure-auth-as-root
Last synced: 28 days ago
JSON representation
Extremely unsafe plugin: every Datasette visitor is treated as the root user
- Host: GitHub
- URL: https://github.com/simonw/datasette-insecure-auth-as-root
- Owner: simonw
- License: apache-2.0
- Created: 2024-03-21T00:11:19.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-03-21T00:14:26.000Z (8 months ago)
- Last Synced: 2024-10-07T13:58:36.366Z (about 1 month ago)
- Language: Python
- Size: 14.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# datasette-insecure-auth-as-root
[![PyPI](https://img.shields.io/pypi/v/datasette-insecure-auth-as-root.svg)](https://pypi.org/project/datasette-insecure-auth-as-root/)
[![Changelog](https://img.shields.io/github/v/release/simonw/datasette-insecure-auth-as-root?include_prereleases&label=changelog)](https://github.com/simonw/datasette-insecure-auth-as-root/releases)
[![Tests](https://github.com/simonw/datasette-insecure-auth-as-root/actions/workflows/test.yml/badge.svg)](https://github.com/simonw/datasette-insecure-auth-as-root/actions/workflows/test.yml)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/simonw/datasette-insecure-auth-as-root/blob/main/LICENSE)Extremely unsafe plugin: every Datasette visitor is treated as the root user
## Installation
Install this plugin in the same environment as Datasette.
```bash
datasette install datasette-insecure-auth-as-root
```
## UsageUsage instructions go here.
## Development
To set up this plugin locally, first checkout the code. Then create a new virtual environment:
```bash
cd datasette-insecure-auth-as-root
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
```