From a92f06eef0240e728682daead32346003467dc81 Mon Sep 17 00:00:00 2001
From: atoav <dh@atoav.com>
Date: Tue, 28 Apr 2020 14:13:00 +0200
Subject: [PATCH] Change run command & fix license in pyproject.toml

---
 README.md      | 2 +-
 pyproject.toml | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index cd3dbdd..0e3e03d 100644
--- a/README.md
+++ b/README.md
@@ -36,7 +36,7 @@ poetry install
 Run bbbmon with:
 
 ```bash
-poetry run bbbmon
+poetry run
 ```
 
 For bbbmon to run you need to have a `bbbmon.properties` file at the path specified. In this file there should be your servers secret and the server URL. You can find this secret on your server in the file `/usr/share/bbb-web/WEB-INF/classes/bigbluebutton.properties` (look for a line starting with `securitySalt=` and copy it to). If in doubt just follow the instructions the CLI gives you.
diff --git a/pyproject.toml b/pyproject.toml
index 9a6cd62..47c4815 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,7 @@ version = "0.1.5"
 description = "A small CLI utility to monitor bbb usage"
 authors = ["David Huss <david.huss@hfbk-hamburg.de>"]
 maintainers = ["David Huss <david.huss@hfbk-hamburg.de>"]
-license = "GPLv3"
+license = "GPL-3.0+"
 readme = "README.md"
 classifiers = [
     "Development Status :: 3 - Alpha",
@@ -28,7 +28,7 @@ appdirs = "^1.4.3"
 pytest = "^5.2"
 
 [tool.poetry.scripts]
-bbbmon = "bbbmon.bbbmon:main"
+run = "bbbmon.bbbmon:main"
 
 [build-system]
 requires = ["poetry>=0.12"]
-- 
GitLab