🎉 Release of add-on SQLite Web 0.1.0

This commit is contained in:
Community Hass.io Add-ons Bot 2018-09-16 21:59:08 +00:00
parent e21266ccd7
commit 55adf12767
6 changed files with 127 additions and 0 deletions

View file

@ -285,6 +285,19 @@ Manage your Docker environment with ease
[:books: Portainer add-on documentation][addon-doc-portainer]
### ✓ [SQLite Web][addon-sqlite-web]
![Latest Version][sqlite-web-version-shield]
![Supports armhf Architecture][sqlite-web-armhf-shield]
![Supports aarch64 Architecture][sqlite-web-aarch64-shield]
![Supports amd64 Architecture][sqlite-web-amd64-shield]
![Supports i386 Architecture][sqlite-web-i386-shield]
![Docker Pulls][sqlite-web-pulls-shield]
Explore your SQLite database
[:books: SQLite Web add-on documentation][addon-doc-sqlite-web]
### ✓ [SSH & Web Terminal][addon-ssh]
![Latest Version][ssh-version-shield]
@ -436,6 +449,7 @@ on the correct GitHub repository matching the add-on.
- [Open an issue for the add-on: Pi-hole][pi-hole-issue]
- [Open an issue for the add-on: Plex Media Server][plex-issue]
- [Open an issue for the add-on: Portainer][portainer-issue]
- [Open an issue for the add-on: SQLite Web][sqlite-web-issue]
- [Open an issue for the add-on: SSH & Web Terminal][ssh-issue]
- [Open an issue for the add-on: Shinobi Pro][shinobi-issue]
- [Open an issue for the add-on: Spotify Connect][spotify-issue]
@ -664,6 +678,15 @@ SOFTWARE.
[portainer-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[portainer-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[portainer-i386-shield]: https://img.shields.io/badge/i386-no-red.svg
[addon-sqlite-web]: https://github.com/hassio-addons/addon-sqlite-web/tree/v0.1.0
[addon-doc-sqlite-web]: https://github.com/hassio-addons/addon-sqlite-web/blob/v0.1.0/README.md
[sqlite-web-issue]: https://github.com/hassio-addons/addon-sqlite-web/issues
[sqlite-web-version-shield]: https://img.shields.io/badge/version-v0.1.0-blue.svg
[sqlite-web-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/sqlite-web.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
[sqlite-web-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[sqlite-web-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-ssh]: https://github.com/hassio-addons/addon-ssh/tree/v3.4.1
[addon-doc-ssh]: https://github.com/hassio-addons/addon-ssh/blob/v3.4.1/README.md
[ssh-issue]: https://github.com/hassio-addons/addon-ssh/issues

1
sqlite-web/CHANGELOG.md Normal file
View file

@ -0,0 +1 @@
🎉 Initial release!

46
sqlite-web/README.md Normal file
View file

@ -0,0 +1,46 @@
# Community Hass.io Add-ons: SQLite Web
[![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield]
[![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum]
[![Buy me a coffee][buymeacoffee-shield]][buymeacoffee]
Explore your Home-Assistant database from your web browser!
## About
This enables you to easily explore all tables and content that is saved in your database.
[Click here for the full documentation][docs]
![SQLite Web screenshot][screenshot]
## WARNING! THIS IS A BETA VERSION!
This Hass.io Add-ons repository contains beta releases of add-ons.
- They might stop working at any time.
- They could have a negative impact on your system.
This repository was created for:
- Anybody willing to test.
- Anybody interested in trying out upcoming add-ons or add-on features.
If you are more interested in stable releases of our add-ons:
<https://github.com/hassio-addons/repository>
[buymeacoffee-shield]: https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-2.svg
[buymeacoffee]: https://www.buymeacoffee.com/ludeeus
[discord-shield]: https://img.shields.io/discord/330944238910963714.svg
[discord]: https://discord.gg/c5DvZ4e
[docs]: https://github.com/hassio-addons/addon-sqlite-web/blob/v0.1.0/README.md
[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg
[forum]: https://community.home-assistant.io/t/community-hass-io-add-on-sqlite-web/68912
[maintenance-shield]: https://img.shields.io/maintenance/yes/2018.svg
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg
[release-shield]: https://img.shields.io/badge/version-v0.1.0-blue.svg
[release]: https://github.com/hassio-addons/addon-sqlite-web/tree/v0.1.0
[screenshot]: https://github.com/hassio-addons/addon-sqlite-web/raw/master/images/sample-view.png

57
sqlite-web/config.json Normal file
View file

@ -0,0 +1,57 @@
{
"name": "SQLite Web",
"version": "0.1.0",
"slug": "sqlite-web",
"description": "Explore your SQLite database",
"url": "https://github.com/hassio-addons/addon-sqlite-web/tree/master/README.md",
"webui": "[PROTO:ssl]://[HOST]:[PORT:6210]",
"startup": "services",
"arch": [
"aarch64",
"amd64",
"armhf",
"i386"
],
"boot": "auto",
"hassio_api": true,
"homeassistant_api": false,
"host_network": false,
"ports": {
"6210/tcp": 6210,
"6220/tcp": 6220
},
"map": [
"ssl",
"config:rw"
],
"options": {
"log_level": "info",
"database_path": "home-assistant_v2.db",
"read_only": true,
"datasette": false,
"username": "",
"password": "",
"ssl": true,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"ipv6": false
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
"database_path": "str",
"read_only": "bool",
"datasette": "bool",
"username": "str",
"password": "str",
"ssl": "bool",
"certfile": "str",
"keyfile": "str",
"ipv6": "bool",
"i_like_to_be_pwned": "bool?",
"leave_front_door_open": "bool?"
},
"environment": {
"LOG_FORMAT": "{LEVEL}: {MESSAGE}"
},
"image": "hassioaddons/sqlite-web"
}

BIN
sqlite-web/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

BIN
sqlite-web/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB