This commit is contained in:
2021-06-29 12:37:08 +03:00
commit 12fdc96d20
282 changed files with 13627 additions and 0 deletions

19
sqlite-web/CHANGELOG.md Normal file
View File

@@ -0,0 +1,19 @@
## Whats changed
## 🧰 Maintenance
- Apply updated repository structure & CI workflow @frenck (#138)
## ⬆️ Dependency updates
- ⬆️ Bump actions/stale from v3.0.17 to v3.0.18 @dependabot (#127)
- ⬆️ Upgrades python3 to 3.8.8-r0 @frenck (#129)
- ⬆️ Bump release-drafter/release-drafter from v5.14.0 to v5.15.0 @dependabot (#128)
- ⬆️ Bump ludeeus/action-shellcheck from 1.0.0 to 1.1.0 @dependabot (#130)
- ⬆️ Bump docker/build-push-action from v2.3.0 to v2.4.0 @dependabot (#131)
- ⬆️ Bump docker/setup-buildx-action from v1.1.1 to v1.1.2 @dependabot (#133)
- ⬆️ Bump docker/setup-qemu-action from v1.0.1 to v1.0.2 @dependabot (#132)
- ⬆️ Bump actions/cache from v2.1.4 to v2.1.5 @dependabot (#134)
- ⬆️ Upgrades cython to 0.29.21-r1 @frenck (#135)
- ⬆️ Bump brpaz/hadolint-action from v1.3.1 to v1.4.0 @dependabot (#136)
- Upgrades add-on base image to v9.2.0 @frenck (#137)

91
sqlite-web/DOCS.md Normal file
View File

@@ -0,0 +1,91 @@
# Home Assistant Community Add-on: SQLite Web
This enables you to easily explore all tables and content that is saved in your database.
## Installation
The installation of this add-on is pretty straightforward and not different in
comparison to installing any other Home Assistant add-on.
1. Search for the “SQLite Web” add-on in the Hass.io 166 add-on store
and install it.
1. Start the "SQLite Web" add-on
1. Check the logs of the "SQLite Web" add-on to see if everything went well.
1. Click "OPEN WEB UI" to open the SQLite Web interface.
1. Log in with your Home Assistant user.
**NOTE**: Starting the add-on might take a couple of minutes (especially the
first time starting the add-on).
## Configuration
This add-on has no configuration options.
## Changelog & Releases
This repository keeps a change log using [GitHub's releases][releases]
functionality.
Releases are based on [Semantic Versioning][semver], and use the format
of `MAJOR.MINOR.PATCH`. In a nutshell, the version will be incremented
based on the following:
- `MAJOR`: Incompatible or major changes.
- `MINOR`: Backwards-compatible new features and enhancements.
- `PATCH`: Backwards-compatible bugfixes and package updates.
## Support
Got questions?
You have several options to get them answered:
- The [Home Assistant Community Add-ons Discord chat server][discord] for add-on
support and feature requests.
- The [Home Assistant Discord chat server][discord-ha] for general Home
Assistant discussions and questions.
- The Home Assistant [Community Forum][forum].
- Join the [Reddit subreddit][reddit] in [/r/homeassistant][reddit]
You could also [open an issue here][issue] GitHub.
## Authors & contributors
The original setup of this repository is by [Joakim Sørensen][ludeeus].
For a full list of all authors and contributors,
check [the contributor's page][contributors].
## License
MIT License
Copyright (c) 2018-2021 Joakim Sørensen
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
[contributors]: https://github.com/hassio-addons/addon-sqlite-web/graphs/contributors
[discord-ha]: https://discord.gg/c5DvZ4e
[discord]: https://discord.me/hassioaddons
[forum]: https://community.home-assistant.io/t/home-assistant-community-add-on-sqlite-web/68912?u=frenck
[issue]: https://github.com/hassio-addons/addon-sqlite-web/issues
[ludeeus]: https://github.com/ludeeus
[reddit]: https://reddit.com/r/homeassistant
[releases]: https://github.com/hassio-addons/addon-sqlite-web/releases
[semver]: http://semver.org/spec/v2.0.0.htm

27
sqlite-web/README.md Normal file
View File

@@ -0,0 +1,27 @@
# Home Assistant Community Add-on: 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.
![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
[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg
[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/2021.svg
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg
[release-shield]: https://img.shields.io/badge/version-v3.1.0-blue.svg
[release]: https://github.com/hassio-addons/addon-sqlite-web/tree/v3.1.0
[screenshot]: https://github.com/hassio-addons/addon-sqlite-web/raw/main/images/sample-view.png

21
sqlite-web/config.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "SQLite Web",
"version": "3.1.0",
"slug": "sqlite-web",
"description": "Explore your SQLite database",
"url": "https://github.com/hassio-addons/addon-sqlite-web/tree/main/README.md",
"ingress": true,
"advanced": true,
"panel_icon": "mdi:database",
"arch": [
"aarch64",
"amd64",
"armhf",
"armv7",
"i386"
],
"map": [
"config:rw"
],
"image": "ghcr.io/hassio-addons/sqlite-web/{arch}"
}

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