mirror of
https://github.com/hassio-addons/repository-edge.git
synced 2025-05-04 19:21:26 +00:00
⬆️ Updating add-on SQLite Web to 3c11953
This commit is contained in:
parent
44349898cd
commit
1ce840bb4b
5 changed files with 16 additions and 7 deletions
|
@ -1156,10 +1156,10 @@ SOFTWARE.
|
|||
[prometheus-armhf-shield]: https://img.shields.io/badge/armhf-no-red.svg
|
||||
[prometheus-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
|
||||
[prometheus-i386-shield]: https://img.shields.io/badge/i386-no-red.svg
|
||||
[addon-sqlite-web]: https://github.com/hassio-addons/addon-sqlite-web/tree/aa9d73e
|
||||
[addon-doc-sqlite-web]: https://github.com/hassio-addons/addon-sqlite-web/blob/aa9d73e/README.md
|
||||
[addon-sqlite-web]: https://github.com/hassio-addons/addon-sqlite-web/tree/3c11953
|
||||
[addon-doc-sqlite-web]: https://github.com/hassio-addons/addon-sqlite-web/blob/3c11953/README.md
|
||||
[sqlite-web-issue]: https://github.com/hassio-addons/addon-sqlite-web/issues
|
||||
[sqlite-web-version-shield]: https://img.shields.io/badge/version-aa9d73e-blue.svg
|
||||
[sqlite-web-version-shield]: https://img.shields.io/badge/version-3c11953-blue.svg
|
||||
[sqlite-web-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/sqlite-web-armhf.svg
|
||||
[sqlite-web-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
|
||||
[sqlite-web-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
# Changelog since v2.2.2
|
||||
- 🔨Add optional configurable folder path for DB (#94)
|
||||
- 🔨Change path to /usr/lib from /usr/local/lib
|
||||
- 🔨Add py3-setuptools 47.0.0-r0
|
||||
- 🔨Add patch 2.7.6-r6
|
||||
|
|
|
@ -55,7 +55,13 @@ you are troubleshooting.
|
|||
|
||||
### Option: `database_path`
|
||||
|
||||
The path for the database file relative to `/config/`
|
||||
The path for the database file relative to `/config/` or the folder path
|
||||
configuration.
|
||||
|
||||
### Option: `folder_path`
|
||||
|
||||
If the database has been moved from `/config/` allows the folder to be specified
|
||||
for example `/share/somefolder/`. Please ensure the trailing slash is set.
|
||||
|
||||
### Option: `read_only`
|
||||
|
||||
|
|
|
@ -41,6 +41,6 @@ If you are more interested in stable releases of our add-ons:
|
|||
[forum]: https://community.home-assistant.io/t/home-assistant-community-add-on-sqlite-web/68912?u=frenck
|
||||
[maintenance-shield]: https://img.shields.io/maintenance/yes/2020.svg
|
||||
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg
|
||||
[release-shield]: https://img.shields.io/badge/version-aa9d73e-blue.svg
|
||||
[release]: https://github.com/hassio-addons/addon-sqlite-web/tree/aa9d73e
|
||||
[release-shield]: https://img.shields.io/badge/version-3c11953-blue.svg
|
||||
[release]: https://github.com/hassio-addons/addon-sqlite-web/tree/3c11953
|
||||
[screenshot]: https://github.com/hassio-addons/addon-sqlite-web/raw/master/images/sample-view.png
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "SQLite Web",
|
||||
"version": "aa9d73e",
|
||||
"version": "3c11953",
|
||||
"slug": "sqlite-web",
|
||||
"description": "Explore your SQLite database",
|
||||
"url": "https://github.com/hassio-addons/addon-sqlite-web/tree/master/README.md",
|
||||
|
@ -29,6 +29,7 @@
|
|||
"6220/tcp": "Datasette API endpoint"
|
||||
},
|
||||
"map": [
|
||||
"share:rw",
|
||||
"ssl",
|
||||
"config:rw"
|
||||
],
|
||||
|
@ -43,6 +44,7 @@
|
|||
"schema": {
|
||||
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
|
||||
"database_path": "str",
|
||||
"folder_path": "str?",
|
||||
"read_only": "bool",
|
||||
"datasette": "bool",
|
||||
"ssl": "bool",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue