diff --git a/README.md b/README.md index 9949ea67..d180f143 100644 --- a/README.md +++ b/README.md @@ -626,6 +626,20 @@ Simple, elegant and feature-rich CCTV/NVR for your cameras [:books: motionEye add-on documentation][addon-doc-motioneye] +### ✓ [phpMyAdmin][addon-phpmyadmin] + +![Latest Version][phpmyadmin-version-shield] +![Supports armhf Architecture][phpmyadmin-armhf-shield] +![Supports armv7 Architecture][phpmyadmin-armv7-shield] +![Supports aarch64 Architecture][phpmyadmin-aarch64-shield] +![Supports amd64 Architecture][phpmyadmin-amd64-shield] +![Supports i386 Architecture][phpmyadmin-i386-shield] +![Docker Pulls][phpmyadmin-pulls-shield] + +A web interface for the official MariaDB add-on + +[:books: phpMyAdmin add-on documentation][addon-doc-phpmyadmin] + ## Releases Releases are based on [Semantic Versioning][semver], and use the format @@ -693,6 +707,7 @@ on the correct GitHub repository matching the add-on. - [Open an issue for the add-on: ZeroTier One][zerotier-issue] - [Open an issue for the add-on: chrony][chrony-issue] - [Open an issue for the add-on: motionEye][motioneye-issue] +- [Open an issue for the add-on: phpMyAdmin][phpmyadmin-issue] For a general repository issue or add-on ideas [open an issue here][issue] @@ -1160,6 +1175,16 @@ SOFTWARE. [motioneye-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg [motioneye-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg [motioneye-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg +[addon-phpmyadmin]: https://github.com/hassio-addons/addon-phpmyadmin/tree/v0.1.0 +[addon-doc-phpmyadmin]: https://github.com/hassio-addons/addon-phpmyadmin/blob/v0.1.0/README.md +[phpmyadmin-issue]: https://github.com/hassio-addons/addon-phpmyadmin/issues +[phpmyadmin-version-shield]: https://img.shields.io/badge/version-v0.1.0-blue.svg +[phpmyadmin-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/phpmyadmin-armhf.svg +[phpmyadmin-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg +[phpmyadmin-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg +[phpmyadmin-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg +[phpmyadmin-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg +[phpmyadmin-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg [awesome-shield]: https://img.shields.io/badge/awesome%3F-yes-brightgreen.svg [awesome]: https://awesome-ha.com [discord-ha]: https://discord.gg/c5DvZ4e diff --git a/phpmyadmin/CHANGELOG.md b/phpmyadmin/CHANGELOG.md new file mode 100644 index 00000000..082a8ebb --- /dev/null +++ b/phpmyadmin/CHANGELOG.md @@ -0,0 +1 @@ +🎉 Initial add-on release! \ No newline at end of file diff --git a/phpmyadmin/README.md b/phpmyadmin/README.md new file mode 100644 index 00000000..66838ecf --- /dev/null +++ b/phpmyadmin/README.md @@ -0,0 +1,38 @@ +# Home Assistant Community Add-on: phpMyAdmin + +[![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] + +[![Discord][discord-shield]][discord] [![Community Forum][forum-shield]][forum] + +[![Sponsor Frenck via GitHub Sponsors][github-sponsors-shield]][github-sponsors] + +[![Support Frenck on Patreon][patreon-shield]][patreon] + +A web interface for the official MariaDB add-on. + +## About + +phpMyAdmin is a database administration tool for MySQL & MariaDB. Frequently +used operations (managing databases, tables, columns, relations, indexes, +users, permissions, etc) can be performed via the user interface, +while you still have the ability to directly execute any SQL statement. + +This add-on was specifically designed to manage the official Home Assistant +MariaDB add-on. + +![phpMyAdmin screenshot][screenshot] + +[discord-shield]: https://img.shields.io/discord/478094546522079232.svg +[discord]: https://discord.me/hassioaddons +[docs]: https://github.com/hassio-addons/addon-phpmyadmin/blob/v0.1.0/README.md +[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg +[forum]: https://community.home-assistant.io/t/home-assistant-community-add-on-phpmyadmin/171729?u=frenck +[github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png +[github-sponsors]: https://github.com/sponsors/frenck +[maintenance-shield]: https://img.shields.io/maintenance/yes/2020.svg +[patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png +[patreon]: https://www.patreon.com/frenck +[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-phpmyadmin/tree/v0.1.0 +[screenshot]: https://github.com/hassio-addons/addon-phpmyadmin/raw/master/images/screenshot.png \ No newline at end of file diff --git a/phpmyadmin/config.json b/phpmyadmin/config.json new file mode 100644 index 00000000..f4406c4e --- /dev/null +++ b/phpmyadmin/config.json @@ -0,0 +1,28 @@ +{ + "name": "phpMyAdmin", + "version": "0.1.0", + "slug": "phpmyadmin", + "description": "A web interface for the official MariaDB add-on", + "url": "https://github.com/hassio-addons/addon-phpmyadmin", + "ingress": true, + "panel_icon": "mdi:database", + "startup": "application", + "arch": [ + "aarch64", + "amd64", + "armhf", + "armv7", + "i386" + ], + "boot": "auto", + "services": [ + "mysql:need" + ], + "hassio_api": true, + "hassio_role": "default", + "options": {}, + "schema": { + "log_level": "list(trace|debug|info|notice|warning|error|fatal)?" + }, + "image": "hassioaddons/phpmyadmin-{arch}" +} \ No newline at end of file diff --git a/phpmyadmin/icon.png b/phpmyadmin/icon.png new file mode 100644 index 00000000..9e0b0bbc Binary files /dev/null and b/phpmyadmin/icon.png differ diff --git a/phpmyadmin/logo.png b/phpmyadmin/logo.png new file mode 100644 index 00000000..a9c88a30 Binary files /dev/null and b/phpmyadmin/logo.png differ