mirror of
https://github.com/Mesteriis/hassio-addons-avm.git
synced 2026-06-02 03:53:58 +02:00
init
This commit is contained in:
15
traccar/CHANGELOG.md
Normal file
15
traccar/CHANGELOG.md
Normal file
@@ -0,0 +1,15 @@
|
||||
## What’s changed
|
||||
|
||||
## ✨ New features
|
||||
|
||||
- Add add-on translation support @frenck (#90)
|
||||
|
||||
## 🧰 Maintenance
|
||||
|
||||
- Apply updated repository structure & CI workflow @frenck (#89)
|
||||
|
||||
## ⬆️ Dependency updates
|
||||
|
||||
- ⬆️ Bump actions/cache from v2.1.4 to v2.1.5 @dependabot (#86)
|
||||
- ⬆️ Bump brpaz/hadolint-action from v1.3.1 to v1.4.0 @dependabot (#87)
|
||||
- Upgrades add-on base image to v9.2.0 @frenck (#88)
|
||||
182
traccar/DOCS.md
Normal file
182
traccar/DOCS.md
Normal file
@@ -0,0 +1,182 @@
|
||||
# Home Assistant Community Add-on: Traccar
|
||||
|
||||
[Traccar][traccar] is a modern GPS Tracking Platform, which is now available
|
||||
as an Hass.io add-on and allows you to run your GPS Tracking software
|
||||
without any cloud.
|
||||
|
||||
Traccar supports more protocols and device models than any other GPS tracking
|
||||
system on the market, straight from your Hass.io instance. You can select GPS
|
||||
trackers from a variety of vendors from low-cost Chinese models to high-end
|
||||
quality brands.
|
||||
|
||||
Traccar also has native mobile apps available for Android and iOS platforms
|
||||
so that you can track those as well. AND! With the Home Assistant `traccar`
|
||||
integration (introduced in 0.83) the data in Traccar will be sent back into
|
||||
your Home Assistant instance as well.
|
||||
|
||||
## Installation
|
||||
|
||||
The installation of this add-on is pretty straightforward and not different in
|
||||
comparison to installing any other Home Assistant add-on.
|
||||
|
||||
1. Ensure you have the official "MariaDB" add-on installed and running!
|
||||
1. Search for the "Traccar" add-on in the Supervisor add-on store
|
||||
and install it.
|
||||
1. Start the "Traccar" add-on
|
||||
1. Check the logs of the "Traccar" add-on to see if everything went well.
|
||||
1. Click the "OPEN WEB UI" button and log in using `admin`/`admin`.
|
||||
1. Be sure to change the username, email, and password!
|
||||
|
||||
## Configuration
|
||||
|
||||
**Note**: _Remember to restart the add-on when the configuration is changed._
|
||||
|
||||
Example add-on configuration:
|
||||
|
||||
```yaml
|
||||
log_level: info
|
||||
ssl: true
|
||||
certfile: fullchain.pem
|
||||
keyfile: privkey.pem
|
||||
```
|
||||
|
||||
**Note**: _This is just an example, don't copy and paste it! Create your own!_
|
||||
|
||||
### Option: `log_level`
|
||||
|
||||
The `log_level` option controls the level of log output by the addon and can
|
||||
be changed to be more or less verbose, which might be useful when you are
|
||||
dealing with an unknown issue. Possible values are:
|
||||
|
||||
- `trace`: Show every detail, like all called internal functions.
|
||||
- `debug`: Shows detailed debug information.
|
||||
- `info`: Normal (usually) interesting events.
|
||||
- `warning`: Exceptional occurrences that are not errors.
|
||||
- `error`: Runtime errors that do not require immediate action.
|
||||
- `fatal`: Something went terribly wrong. Add-on becomes unusable.
|
||||
|
||||
Please note that each level automatically includes log messages from a
|
||||
more severe level, e.g., `debug` also shows `info` messages. By default,
|
||||
the `log_level` is set to `info`, which is the recommended setting unless
|
||||
you are troubleshooting.
|
||||
|
||||
### Option: `ssl`
|
||||
|
||||
Enables/Disables SSL (HTTPS) on the web interface.
|
||||
Set it `true` to enable it, `false` otherwise.
|
||||
|
||||
### Option: `certfile`
|
||||
|
||||
The certificate file to use for SSL.
|
||||
|
||||
**Note**: _The file MUST be stored in `/ssl/`, which is the default_
|
||||
|
||||
### Option: `keyfile`
|
||||
|
||||
The private key file to use for SSL.
|
||||
|
||||
**Note**: _The file MUST be stored in `/ssl/`, which is the default_
|
||||
|
||||
## Integrating into Home Assistant
|
||||
|
||||
The `traccar` integration of Home Assistant makes it possible to transfer all
|
||||
assets tracked by Traccar to appear in Home Assistant as a tracked device.
|
||||
|
||||
Add the following snippet to your Home Assistant `configuration.yaml` file.
|
||||
|
||||
```yaml
|
||||
device_tracker:
|
||||
- platform: traccar
|
||||
host: localhost
|
||||
port: 18682
|
||||
username: TRACCAR_EMAIL_ADDRESS
|
||||
password: TRACCAR_PASSWORD
|
||||
```
|
||||
|
||||
Restart Home Assistant.
|
||||
|
||||
## Enabling more protocols
|
||||
|
||||
By default, this add-on has disabled most of the GPS protocols. This has
|
||||
been done to reduce the number of open ports the add-on would create.
|
||||
|
||||
By default, only the OsmAnd protocol (used by the Traccar Apps) and the API
|
||||
are enabled. If you want more protocols, you can do so, by adding entries
|
||||
to your `/config/traccar.xml` file.
|
||||
|
||||
A list if all entries can be found here:
|
||||
|
||||
<https://github.com/hassio-addons/addon-traccar/blob/main/traccar/rootfs/etc/traccar/traccar.xml#L22>
|
||||
|
||||
To find out which protocol your device uses, please refer to the Traccar
|
||||
website: <https://www.traccar.org/devices/>
|
||||
|
||||
## 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 [Franck Nijhof][frenck].
|
||||
|
||||
For a full list of all authors and contributors,
|
||||
check [the contributor's page][contributors].
|
||||
|
||||
## License
|
||||
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2018-2021 Franck Nijhof
|
||||
|
||||
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-traccar/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-traccar/81407?u=frenck
|
||||
[frenck]: https://github.com/frenck
|
||||
[issue]: https://github.com/hassio-addons/addon-traccar/issues
|
||||
[reddit]: https://reddit.com/r/homeassistant
|
||||
[releases]: https://github.com/hassio-addons/addon-traccar/releases
|
||||
[semver]: http://semver.org/spec/v2.0.0.htm
|
||||
[traccar]: https://www.traccar.org
|
||||
45
traccar/README.md
Normal file
45
traccar/README.md
Normal file
@@ -0,0 +1,45 @@
|
||||
# Home Assistant Community Add-on: Traccar
|
||||
|
||||
[![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]
|
||||
|
||||
Modern GPS Tracking Platform.
|
||||
|
||||
![Traccar in the Home Assistant Frontend][screenshot]
|
||||
|
||||
## About
|
||||
|
||||
[Traccar][traccar] is a modern GPS Tracking Platform, which is now available
|
||||
as an Hass.io add-on and allows you to run your GPS Tracking software without
|
||||
any cloud.
|
||||
|
||||
Traccar supports more protocols and device models than any other GPS tracking
|
||||
system on the market, straight from your Hass.io instance. You can select GPS
|
||||
trackers from a variety of vendors from low-cost Chinese models to high-end
|
||||
quality brands.
|
||||
|
||||
Traccar also has native mobile apps available for Android and iOS platforms
|
||||
so that you can track those as well. AND! With the Home Assistant `traccar`
|
||||
integration (introduced in 0.83) the data in Traccar will be sent back into
|
||||
your Home Assistant instance as well.
|
||||
|
||||
|
||||
[discord-shield]: https://img.shields.io/discord/478094546522079232.svg
|
||||
[discord]: https://discord.me/hassioaddons
|
||||
[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg
|
||||
[forum]: https://community.home-assistant.io/t/home-assistant-community-add-on-traccar/81407?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/2021.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.12.0-blue.svg
|
||||
[release]: https://github.com/hassio-addons/addon-traccar/tree/v0.12.0
|
||||
[screenshot]: https://github.com/hassio-addons/addon-traccar/raw/main/images/screenshot.png
|
||||
[traccar]: https://www.traccar.org
|
||||
45
traccar/config.json
Normal file
45
traccar/config.json
Normal file
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"name": "Traccar",
|
||||
"version": "0.12.0",
|
||||
"slug": "traccar",
|
||||
"description": "Modern GPS Tracking Platform",
|
||||
"url": "https://github.com/hassio-addons/addon-traccar",
|
||||
"ingress": true,
|
||||
"ingress_port": 0,
|
||||
"panel_icon": "mdi:car-connected",
|
||||
"startup": "services",
|
||||
"arch": [
|
||||
"aarch64",
|
||||
"amd64",
|
||||
"armhf",
|
||||
"armv7",
|
||||
"i386"
|
||||
],
|
||||
"init": false,
|
||||
"host_network": true,
|
||||
"ports": {
|
||||
"80/tcp": null
|
||||
},
|
||||
"ports_description": {
|
||||
"80/tcp": "Web interface (Not required for Ingress)"
|
||||
},
|
||||
"map": [
|
||||
"config:rw",
|
||||
"ssl"
|
||||
],
|
||||
"services": [
|
||||
"mysql:want"
|
||||
],
|
||||
"options": {
|
||||
"ssl": true,
|
||||
"certfile": "fullchain.pem",
|
||||
"keyfile": "privkey.pem"
|
||||
},
|
||||
"schema": {
|
||||
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
|
||||
"ssl": "bool",
|
||||
"certfile": "str",
|
||||
"keyfile": "str"
|
||||
},
|
||||
"image": "ghcr.io/hassio-addons/traccar/{arch}"
|
||||
}
|
||||
BIN
traccar/icon.png
Normal file
BIN
traccar/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.9 KiB |
BIN
traccar/logo.png
Normal file
BIN
traccar/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 16 KiB |
15
traccar/translations/de.yaml
Normal file
15
traccar/translations/de.yaml
Normal file
@@ -0,0 +1,15 @@
|
||||
configuration:
|
||||
certfile:
|
||||
description: 'The certificate file to use for SSL. Note that this file must exist in the /ssl/ folder.'
|
||||
name: 'Certificate file'
|
||||
keyfile:
|
||||
description: 'The private key file to use for SSL. Note that this file must exist in the /ssl/ folder.'
|
||||
name: 'Private key file'
|
||||
log_level:
|
||||
description: 'Controls the level of log details the add-on provides.'
|
||||
name: 'Log level'
|
||||
ssl:
|
||||
description: 'Enables/Disables SSL (HTTPS) on the web interface.'
|
||||
name: SSL
|
||||
network:
|
||||
80/tcp: 'Web interface (Not required for Ingress)'
|
||||
22
traccar/translations/en.yaml
Normal file
22
traccar/translations/en.yaml
Normal file
@@ -0,0 +1,22 @@
|
||||
---
|
||||
configuration:
|
||||
log_level:
|
||||
name: Log level
|
||||
description: >-
|
||||
Controls the level of log details the add-on provides.
|
||||
ssl:
|
||||
name: SSL
|
||||
description: >-
|
||||
Enables/Disables SSL (HTTPS) on the web interface.
|
||||
certfile:
|
||||
name: Certificate file
|
||||
description: >-
|
||||
The certificate file to use for SSL. Note that this file must
|
||||
exist in the /ssl/ folder.
|
||||
keyfile:
|
||||
name: Private key file
|
||||
description: >-
|
||||
The private key file to use for SSL. Note that this file must
|
||||
exist in the /ssl/ folder.
|
||||
network:
|
||||
80/tcp: Web interface (Not required for Ingress)
|
||||
15
traccar/translations/nl.yaml
Normal file
15
traccar/translations/nl.yaml
Normal file
@@ -0,0 +1,15 @@
|
||||
configuration:
|
||||
certfile:
|
||||
description: 'The certificate file to use for SSL. Note that this file must exist in the /ssl/ folder.'
|
||||
name: 'Certificate file'
|
||||
keyfile:
|
||||
description: 'The private key file to use for SSL. Note that this file must exist in the /ssl/ folder.'
|
||||
name: 'Private key file'
|
||||
log_level:
|
||||
description: 'Controls the level of log details the add-on provides.'
|
||||
name: 'Log niveau'
|
||||
ssl:
|
||||
description: 'Enables/Disables SSL (HTTPS) on the web interface.'
|
||||
name: SSL
|
||||
network:
|
||||
80/tcp: 'Webinterface (niet vereist voor Ingress)'
|
||||
Reference in New Issue
Block a user