diff --git a/README.md b/README.md index cd3dbddd7d3f5020a8f6ac18dac1218ea141cfd4..0e3e03d499c444c69aa863ae6dbb871e1d151752 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 9a6cd6221c2aaf9a55a9a965047bac8425187141..47c4815c13f39c4cd7a0b4f75af9636278505ea8 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"]