🔨 Re-branding

This commit is contained in:
Franck Nijhof 2020-02-12 00:25:43 +01:00
parent dbef3e81b1
commit 45fe79ac0b
No known key found for this signature in database
GPG key ID: D62583BA8AB11CA3
11 changed files with 23 additions and 23 deletions

View file

@ -1,8 +1,8 @@
--- ---
repository: repository:
description: "Grocy - Community Hass.io Add-on for Home Assistant" description: "Grocy - Community Home Assistant Add-ons"
homepage: https://addons.community homepage: https://addons.community
topics: groceries, food, erp, grocy, hassio-addons, hassio, hass, home-assistant, homeassistant topics: groceries, food, erp, grocy, addon, addons, home-assistant, homeassistant
private: false private: false
has_issues: true has_issues: true
has_projects: false has_projects: false

View file

@ -1,4 +1,4 @@
# Community Hass.io Add-ons: Grocy # Community Home Assistant Add-on: Grocy
[![GitHub Release][releases-shield]][releases] [![GitHub Release][releases-shield]][releases]
![Project Stage][project-stage-shield] ![Project Stage][project-stage-shield]
@ -43,9 +43,9 @@ management solution for your home, delivering features like:
## Installation ## Installation
The installation of this add-on is pretty straightforward and not different in The installation of this add-on is pretty straightforward and not different in
comparison to installing any other Hass.io add-on. comparison to installing any other Home Assistant add-on.
1. Search for the "Grocy" add-on in the Hass.io add-on store. 1. Search for the "Grocy" add-on in the Supervisor add-on store.
1. Install the "Grocy" add-on. 1. Install the "Grocy" add-on.
1. Start the "Grocy" add-on. 1. Start the "Grocy" add-on.
1. Check the logs of the "Grocy" add-on to see if everything went well. 1. Check the logs of the "Grocy" add-on to see if everything went well.
@ -113,13 +113,13 @@ Panel. Set it `true` to enable it, `false` otherwise.
The certificate file to use for SSL. The certificate file to use for SSL.
**Note**: _The file MUST be stored in `/ssl/`, which is the default for Hass.io_ **Note**: _The file MUST be stored in `/ssl/`, which is the default_
### Option: `keyfile` ### Option: `keyfile`
The private key file to use for SSL. The private key file to use for SSL.
**Note**: _The file MUST be stored in `/ssl/`, which is the default for Hass.io_ **Note**: _The file MUST be stored in `/ssl/`, which is the default_
### Option: `culture` ### Option: `culture`
@ -220,7 +220,7 @@ Got questions?
You have several options to get them answered: You have several options to get them answered:
- The [Community Hass.io Add-ons Discord chat server][discord] for add-on - The [Community Home Assistant Add-ons Discord chat server][discord] for add-on
support and feature requests. support and feature requests.
- The [Home Assistant Discord chat server][discord-ha] for general Home - The [Home Assistant Discord chat server][discord-ha] for general Home
Assistant discussions and questions. Assistant discussions and questions.
@ -246,11 +246,11 @@ The original setup of this repository is by [Franck Nijhof][frenck].
For a full list of all authors and contributors, For a full list of all authors and contributors,
check [the contributor's page][contributors]. check [the contributor's page][contributors].
## We have got some Hass.io add-ons for you ## We have got some Home Assistant add-ons for you
Want some more functionality to your Hass.io Home Assistant instance? Want some more functionality to your Home Assistant instance?
We have created multiple add-ons for Hass.io. For a full list, check out We have created multiple add-ons for Home Assistant. For a full list, check out
our [GitHub Repository][repository]. our [GitHub Repository][repository].
## License ## License

View file

@ -1,4 +1,4 @@
# Community Hass.io Add-ons: Grocy # Community Home Assistant Add-on: Grocy
[![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield] [![Release][release-shield]][release] ![Project Stage][project-stage-shield] ![Project Maintenance][maintenance-shield]
@ -31,8 +31,8 @@ management solution for your home, delivering features like:
{% if channel == "edge" %} {% if channel == "edge" %}
## WARNING! THIS IS AN EDGE VERSION! ## WARNING! THIS IS AN EDGE VERSION!
This Hass.io Add-ons repository contains edge builds of add-ons. Edge builds This Home Assistant Add-ons repository contains edge builds of add-ons.
add-ons are based upon the latest development version. Edge builds add-ons are based upon the latest development version.
- They may not work at all. - They may not work at all.
- They might stop working at any time. - They might stop working at any time.
@ -52,7 +52,7 @@ If you are more interested in stable releases of our add-ons:
{% if channel == "beta" %} {% if channel == "beta" %}
## WARNING! THIS IS A BETA VERSION! ## WARNING! THIS IS A BETA VERSION!
This Hass.io Add-ons repository contains beta releases of add-ons. This Home Assistant Add-ons repository contains beta releases of add-ons.
- They might stop working at any time. - They might stop working at any time.
- They could have a negative impact on your system. - They could have a negative impact on your system.

View file

@ -18,7 +18,7 @@
"80/tcp": null "80/tcp": null
}, },
"ports_description": { "ports_description": {
"80/tcp": "Web interface (Not required for Hass.io Ingress)" "80/tcp": "Web interface (Not required for Ingress)"
}, },
"options": { "options": {
"culture": "en", "culture": "en",

View file

@ -1,6 +1,6 @@
#!/usr/bin/with-contenv bashio #!/usr/bin/with-contenv bashio
# ============================================================================== # ==============================================================================
# Community Hass.io Add-ons: Grocy # Community Home Assistant Add-on: Grocy
# Sets up Grocy before the server starts # Sets up Grocy before the server starts
# ============================================================================== # ==============================================================================
if ! bashio::fs.directory_exists "/data/grocy"; then if ! bashio::fs.directory_exists "/data/grocy"; then

View file

@ -1,6 +1,6 @@
#!/usr/bin/with-contenv bashio #!/usr/bin/with-contenv bashio
# ============================================================================== # ==============================================================================
# Community Hass.io Add-ons: Grocy # Community Home Assistant Add-on: Grocy
# Configures NGINX for use with Grocy # Configures NGINX for use with Grocy
# ============================================================================== # ==============================================================================
declare certfile declare certfile

View file

@ -13,7 +13,7 @@ worker_processes 1;
# Enables the use of JIT for regular expressions to speed-up their processing. # Enables the use of JIT for regular expressions to speed-up their processing.
pcre_jit on; pcre_jit on;
# Write error log to Hass.io add-on log. # Write error log to the add-on log.
error_log /proc/1/fd/1 error; error_log /proc/1/fd/1 error;
# Load allowed environment vars # Load allowed environment vars

View file

@ -1,6 +1,6 @@
#!/usr/bin/execlineb -S0 #!/usr/bin/execlineb -S0
# ============================================================================== # ==============================================================================
# Community Hass.io Add-ons: Grocy # Community Home Assistant Add-on: Grocy
# Take down the S6 supervision tree when Nginx fails # Take down the S6 supervision tree when Nginx fails
# ============================================================================== # ==============================================================================
if { s6-test ${1} -ne 0 } if { s6-test ${1} -ne 0 }

View file

@ -1,6 +1,6 @@
#!/usr/bin/with-contenv bashio #!/usr/bin/with-contenv bashio
# ============================================================================== # ==============================================================================
# Community Hass.io Add-ons: Grocy # Community Home Assistant Add-on: Grocy
# Runs the Nginx daemon # Runs the Nginx daemon
# ============================================================================== # ==============================================================================

View file

@ -1,6 +1,6 @@
#!/usr/bin/execlineb -S0 #!/usr/bin/execlineb -S0
# ============================================================================== # ==============================================================================
# Community Hass.io Add-ons: Grocy # Community Home Assistant Add-on: Grocy
# Take down the S6 supervision tree when PHP FPM fails # Take down the S6 supervision tree when PHP FPM fails
# ============================================================================== # ==============================================================================
if { s6-test ${1} -ne 0 } if { s6-test ${1} -ne 0 }

View file

@ -1,6 +1,6 @@
#!/usr/bin/with-contenv bashio #!/usr/bin/with-contenv bashio
# ============================================================================== # ==============================================================================
# Community Hass.io Add-ons: Grocy # Community Home Assistant Add-on: Grocy
# Runs the PHP-FPM daemon # Runs the PHP-FPM daemon
# ============================================================================== # ==============================================================================
export GROCY_CULTURE export GROCY_CULTURE