From e08d4c21b832e50759364c5f9d21cd8c214b941b Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Tue, 2 Feb 2021 01:05:07 +0100 Subject: [PATCH] Documentation domain name moved to docs.platypush.tech --- README.md | 10 +++++----- examples/conf/config.yaml | 12 ++++++------ 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index ed326af3..6b6e3773 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Platypush ========= [![Build Status](https://travis-ci.org/BlackLight/platypush.svg?branch=master)](https://travis-ci.org/BlackLight/platypush) -[![Documentation Status](https://readthedocs.org/projects/platypush/badge/?version=latest)](https://platypush.readthedocs.io/en/latest/?badge=latest) +[![Documentation Status](https://readthedocs.org/projects/platypush/badge/?version=latest)](https://docs.platypush.tech/en/latest/) [![pip version](https://img.shields.io/pypi/v/platypush.svg?style=flat)](https://pypi.python.org/pypi/platypush/) [![License](https://img.shields.io/github/license/BlackLight/platypush.svg)](https://git.platypush.tech/platypush/platypush/-/blob/master/LICENSE.txt) [![Last Commit](https://img.shields.io/github/last-commit/BlackLight/platypush.svg)](https://git.platypush.tech/platypush/platypush/-/commits/master/) @@ -14,7 +14,7 @@ Platypush - The [wiki](https://git.platypush.tech/platypush/platypush/-/wikis/home) also contains many resources on getting started. -- Extensive documentation for all the available integrations and messages is available on [ReadTheDocs](https://platypush.readthedocs.io/en/latest/). +- Extensive documentation for all the available integrations and messages is available on [ReadTheDocs](https://docs.platypush.tech/en/latest/). - If you have issues/feature requests/enhancement ideas please [create an issue](https://git.platypush.tech/platypush/platypush/-/issues). @@ -43,7 +43,7 @@ You can use Platypush to do things like: - Play local videos, YouTube videos and torrent links - Get weather forecast for your location - Build your own web dashboard with calendar, weather, news and music controls (basically, anything that has a Platypush web widget) -- ...and much more (basically, anything that comes with a [Platypush plugin](https://platypush.readthedocs.io/en/latest/plugins.html)) +- ...and much more (basically, anything that comes with a [Platypush plugin](https://docs.platypush.tech/en/latest/plugins.html)) Imagine the ability of executing all the actions above through messages delivered through: @@ -55,7 +55,7 @@ Imagine the ability of executing all the actions above through messages delivere - [Kafka](https://kafka.apache.org) - [Redis](https://redis.io) - [MQTT](https://mqtt.org) -- ...amd much more (basically, anything that comes with a [Platypush backend](https://platypush.readthedocs.io/en/latest/backends.html)) +- ...amd much more (basically, anything that comes with a [Platypush backend](https://docs.platypush.tech/en/latest/backends.html)) Imagine the ability of building custom event hooks to automatically trigger any actions: @@ -77,7 +77,7 @@ Imagine the ability of running the application, with lots of those bundled featu To get started: - [Wiki](https://git.platypush.tech/platypush/platypush/-/wikis/home) for installation notes, quick start, examples and architecture reference -- [Read the docs](https://platypush.readthedocs.io/en/latest/) for a complete reference on the available plugins and backends +- [Read the docs](https://docs.platypush.tech/en/latest/) for a complete reference on the available plugins and backends - [Blog articles](https://blog.platypush.tech) describing hands-on applications of Platypush --- diff --git a/examples/conf/config.yaml b/examples/conf/config.yaml index fdcb1679..bb70e562 100644 --- a/examples/conf/config.yaml +++ b/examples/conf/config.yaml @@ -40,10 +40,10 @@ device_id: myname # a plugin class. The methods of the class with @action annotation will # be exported as runnable actions, while the __init__ parameters are # configuration attributes that you can initialize in your config.yaml. -# Plugin classes are documented at https://platypush.readthedocs.io/en/latest/plugins.html +# Plugin classes are documented at https://docs.platypush.tech/en/latest/plugins.html # # In this example we'll configure the light.hue plugin, see -# https://platypush.readthedocs.io/en/latest/platypush/plugins/light.hue.html +# https://docs.platypush.tech/en/latest/platypush/plugins/light.hue.html # for reference. You can easily install the required dependencies for the plugin through # pip install 'platypush[hue]' light.hue: @@ -54,14 +54,14 @@ light.hue: - Living Room # Example configuration of music.mpd plugin, see -# https://platypush.readthedocs.io/en/latest/platypush/plugins/music.mpd.html +# https://docs.platypush.tech/en/latest/platypush/plugins/music.mpd.html # You can easily install the dependencies through pip install 'platypush[mpd]' music.mpd: host: localhost port: 6600 # Example configuration of media.chromecast plugin, see -# https://platypush.readthedocs.io/en/latest/platypush/plugins/media.chromecast.html +# https://docs.platypush.tech/en/latest/platypush/plugins/media.chromecast.html # You can easily install the dependencies through pip install 'platypush[chromecast]' media.chromecast: chromecast: Living Room TV @@ -97,10 +97,10 @@ calendar: # to happen and either trigger events or provide additional services on top of platypush. # Just like plugins, backends are classes whose configuration matches one-to-one the # supported parameters on the __init__ methods. You can check the documentation for the -# available backends here: https://platypush.readthedocs.io/en/latest/backends.html. +# available backends here: https://docs.platypush.tech/en/latest/backends.html. # Moreover, most of the backends will generate events that you can react to through custom # event hooks. Check here for the events documentation: -# https://platypush.readthedocs.io/en/latest/events.html +# https://docs.platypush.tech/en/latest/events.html # # You may usually want to enable the HTTP backend, as it provides many useful features on # top of platypush. Among those: