Skip to content
Snippets Groups Projects
Commit a92f06ee authored by David Huss's avatar David Huss :speech_balloon:
Browse files

Change run command & fix license in pyproject.toml

parent dbff7fd2
No related branches found
No related tags found
No related merge requests found
...@@ -36,7 +36,7 @@ poetry install ...@@ -36,7 +36,7 @@ poetry install
Run bbbmon with: Run bbbmon with:
```bash ```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. 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.
......
...@@ -4,7 +4,7 @@ version = "0.1.5" ...@@ -4,7 +4,7 @@ version = "0.1.5"
description = "A small CLI utility to monitor bbb usage" description = "A small CLI utility to monitor bbb usage"
authors = ["David Huss <david.huss@hfbk-hamburg.de>"] authors = ["David Huss <david.huss@hfbk-hamburg.de>"]
maintainers = ["David Huss <david.huss@hfbk-hamburg.de>"] maintainers = ["David Huss <david.huss@hfbk-hamburg.de>"]
license = "GPLv3" license = "GPL-3.0+"
readme = "README.md" readme = "README.md"
classifiers = [ classifiers = [
"Development Status :: 3 - Alpha", "Development Status :: 3 - Alpha",
...@@ -28,7 +28,7 @@ appdirs = "^1.4.3" ...@@ -28,7 +28,7 @@ appdirs = "^1.4.3"
pytest = "^5.2" pytest = "^5.2"
[tool.poetry.scripts] [tool.poetry.scripts]
bbbmon = "bbbmon.bbbmon:main" run = "bbbmon.bbbmon:main"
[build-system] [build-system]
requires = ["poetry>=0.12"] requires = ["poetry>=0.12"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment