update readme

This commit is contained in:
jarbas 2022-10-04 12:43:52 +01:00
parent ee347cf6e9
commit fc709ef4ec
2 changed files with 8 additions and 4 deletions

View file

@ -1,6 +1,9 @@
# ovos backend UI
a simple UI for [OVOS-local-backend](https://github.com/OpenVoiceOS/OVOS-local-backend), utility to manage all your devices
a simple UI for [OVOS-personal-backend](https://github.com/OpenVoiceOS/ovos-personal-backend), utility to manage all
your devices
If you are running ovos-core without a backend you can also use this UI to view metrics, tag wake words and handle OAuth
![](./screenshots/demo.gif)
@ -10,7 +13,7 @@ a simple UI for [OVOS-local-backend](https://github.com/OpenVoiceOS/OVOS-local-b
or from source
`pip install git+https://github.com/OpenVoiceOS/ovos-personal-backend-ui`
`pip install git+https://github.com/OpenVoiceOS/ovos-backend-manager`
## Usage

View file

@ -1,4 +1,5 @@
import os
from setuptools import setup
BASEDIR = os.path.abspath(os.path.dirname(__file__))
@ -55,11 +56,11 @@ setup(
install_requires=required("requirements.txt"),
package_data={'': package_files('ovos_backend_manager')},
include_package_data=True,
url='https://github.com/OpenVoiceOS/ovos-personal-backend-ui',
url='https://github.com/OpenVoiceOS/ovos-backend-manager',
license='Apache-2.0',
author='jarbasAI',
author_email='jarbasai@mailfence.com',
description='UI for OpenVoiceOS personal backend',
description='UI to manage OpenVoiceOS backends',
entry_points={
'console_scripts': [
'ovos-backend-manager=ovos_backend_manager.__main__:main'