1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/homeassistant_ynh.git synced 2024-09-03 19:26:16 +02:00
homeassistant_ynh/manifest.json

113 lines
4.1 KiB
JSON
Raw Normal View History

2022-01-08 10:04:57 +01:00
{
2022-01-18 21:35:26 +01:00
"name": "Home Assistant",
"id": "homeassistant",
"packaging_format": 1,
"description": {
"en": "Home automation platform",
"fr": "Plateforme domotique"
},
2022-12-14 20:53:01 +01:00
"version": "2022.12.6~ynh1",
2022-01-18 21:35:26 +01:00
"url": "https://github.com/home-assistant/home-assistant",
"upstream": {
"license": "Apache-2.0",
"website": "https://www.home-assistant.io",
"demo": "https://demo.home-assistant.io",
"admindoc": "https://www.home-assistant.io/docs/",
"code": "https://github.com/home-assistant/core"
},
2022-01-08 10:04:57 +01:00
"license": "Apache-2.0",
2022-01-18 21:35:26 +01:00
"maintainer": {
"name": "ewilly",
"email": "ewilly@ewilly.fr"
},
"requirements": {
2022-01-08 10:04:57 +01:00
"yunohost": ">= 4.3.0"
2022-01-18 21:35:26 +01:00
},
"multi_instance": false,
"services": [
"nginx"
],
"arguments": {
"install": [
{
"name": "domain",
"type": "domain"
},
{
"name": "is_public",
"type": "boolean",
"help": {
"en": "If not public, Smartphone app will not work",
"fr": "Dans le cas contraire, l'application sur Smartphone ne fonctionnera pas"
},
"default": true
2022-12-16 14:43:40 +01:00
},
{
"name": "home",
"type": "string",
"ask": {
"en": "Name of the location where Home Assistant is running."
},
"default": "Home"
},
{
"name": "latitude",
"type": "string",
"ask": {
"en": "Latitude of your location required to calculate the time the sun rises and sets--> https://www.openstreetmap.org"
},
"default": 32.87336
},
{
"name": "longitude",
"type": "string",
"ask": {
"en": "Longitude of your location required to calculate the time the sun rises and sets --> https://www.openstreetmap.org"
},
"default": 117.22743
},
{
"name": "elevation",
"type": "number",
"ask": {
"en": "Altitude above sea level in meters. Impacts sunrise data."
},
"default": 430
},
{
"name": "unit_system",
"type": "string",
"ask": {
"en": "metric for Metric, us_customary for US Customary. This also sets temperature_unit, Celsius for Metric and Fahrenheit for US Customary."
},
"choices": ["metric", "us_customary"],
"default": "metric"
},
{
"name": "currency",
"type": "string",
"ask": {
"en": "Pick your currency code from the column Code of Wikipedias list of ISO 4217 active codes --> https://en.wikipedia.org/wiki/ISO_4217#Active_codes"
},
"default": "USD"
},
{
"name": "country",
"type": "string",
"ask": {
"en": "Country in which Home Assistant is running. This may, for example, influence radio settings to comply with local regulations. The country should be specified as an ISO 3166.1 alpha-2 code. Pick your country from the column Code of Wikipedias list of ISO 31661 alpha-2 officially assigned code --> https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements"
},
"default": "US"
},
{
"name": "time_zone",
"type": "string",
"ask": {
"en": "Pick your time zone from the column TZ of Wikipedias list of tz database time zones --> https://en.wikipedia.org/wiki/List_of_tz_database_time_zones"
},
"default": "America/Los_Angeles"
2022-01-18 21:35:26 +01:00
}
]
}
2022-01-08 10:04:57 +01:00
}