8go
8go
Also: `vim config.yaml # modify the logging parameters, increase logging` See in the log output helps you further.
The debug log says: sqlite3 tries to create a database and it fails. wherever your `bot.db` there is a problem. Either the file exists and is not a real sqlite3...
`bot.db` is not a directory, should not be a directory. `bot.db` is a file to be created. `database_filepath: "/foo/bar/bot.db"` then `/foo/bar` must be an existing dir with write permissions. `database_filepath:...
`bot.db` as directory: definitely wrong `bot.db` as a blank file: definitely wrong Your Docker file is not correct. If done correctly, the eno bot creates the `bot.db` file.
I am not expert enough on Docker to make comments on Docker files. Run it without Docker. You will see, that if `bot.db` is a directory, it will fail. If...
To start with you do not need any of this, this is if and only if you want to run it as a service. But you can run it without...
Hi @unreal79. Thanks for contributing an idea. I understand what you are asking for. I think this is outside the scope of the possibility of the `matrix-eno-bot`. The `matrix-eno-bot` works...
Hi @juergenpabel Excellent. Fantastic for this great piece of work. Is there a type in your text above? Instead of "any message can only be matched against one command" did...
[bot_commands.py](https://github.com/8go/matrix-eno-bot/pull/32/files#diff-3f39469e3559fd8199ed4e72e3a2e4c88cc51b8fb2595e99db26f8c18ed97783) line 47 has a typo (wrong class name in comment)
Why a separate rooms.yaml file? Now there are 2 config files: rooms.yaml and commands.yaml. Can't the rooms.yaml file become the new version of the commands.yaml file? Simpler? Less confusion? If...