diff --git a/README.md b/README.md index 17ef4e34..3bcd61ec 100644 --- a/README.md +++ b/README.md @@ -267,6 +267,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] @@ -397,6 +410,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] @@ -615,6 +629,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 diff --git a/sqlite-web/CHANGELOG.md b/sqlite-web/CHANGELOG.md new file mode 100644 index 00000000..ececd805 --- /dev/null +++ b/sqlite-web/CHANGELOG.md @@ -0,0 +1 @@ +🎉 Initial release! \ No newline at end of file diff --git a/sqlite-web/README.md b/sqlite-web/README.md new file mode 100644 index 00000000..8841684c --- /dev/null +++ b/sqlite-web/README.md @@ -0,0 +1,30 @@ +# 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] + +[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 \ No newline at end of file diff --git a/sqlite-web/config.json b/sqlite-web/config.json new file mode 100644 index 00000000..f0c937e8 --- /dev/null +++ b/sqlite-web/config.json @@ -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" +} \ No newline at end of file diff --git a/sqlite-web/icon.png b/sqlite-web/icon.png new file mode 100644 index 00000000..c18dcf56 Binary files /dev/null and b/sqlite-web/icon.png differ diff --git a/sqlite-web/logo.png b/sqlite-web/logo.png new file mode 100644 index 00000000..b6f804d4 Binary files /dev/null and b/sqlite-web/logo.png differ