Update Docs to match regex for repository URL (#4413)

Describe that https:// Repository URLs have to end with .git to match regex for repository URL.
This commit is contained in:
Lukas Ecklmayr 2018-01-14 20:36:16 +01:00 committed by Franck Nijhof
parent 394f9b5e94
commit 68bb697477

View File

@ -13,7 +13,7 @@ Load and update configuration files for Home Assistant from a GIT repository.
```json
{
"repository": "https://example.com/my_configs",
"repository": "https://example.com/my_configs.git",
"auto_restart": false,
"repeat": {
"active": false,
@ -32,7 +32,7 @@ Load and update configuration files for Home Assistant from a GIT repository.
}
```
- **repository** (*Required*): GIT url to your repository.
- **repository** (*Required*): GIT url to your repository. You have to add .git to your GITHub-Repository-URL (see example Config)
- **auto_restart** (*Optional*): Make a restart of Home-Assistant if the config have change and is valid.
- **repeat/active** (*Optional*): Pull periodic for GIT updates.
- **repeat/interval** (*Optional*): Pull all x seconds and look for changes.