@@ -13,21 +13,21 @@ plugin with a predefined Matrix account.
13
13
## Basic usage
14
14
15
15
0 . Set up a virtual environment.
16
- 1 . Create with ` virtualenv -p /usr/bin/python3 .venv `
17
- 2 . Activate with ` source .venv/bin/activate `
16
+ 1 . Create with ` virtualenv -p /usr/bin/python3 .venv `
17
+ 2 . Activate with ` source .venv/bin/activate `
18
18
1 . Install maubot into the virtualenv with ` pip install --upgrade maubot[all] `
19
- * ` [all] ` at the end will install all optional dependencies!
20
- The e2ee optional dependency requires libolm3 to be installed natively.
21
- * Alternatively install the latest git version with
22
- ` pip install --upgrade git+https://github.com/maubot/maubot.git#egg=maubot[all] `
19
+ * ` [all] ` at the end will install all optional dependencies!
20
+ The e2ee optional dependency requires libolm3 to be installed natively.
21
+ * Alternatively install the latest git version with
22
+ ` pip install --upgrade git+https://github.com/maubot/maubot.git#egg=maubot[all] `
23
23
2 . Extract the plugin you want to run into the directory
24
24
(at least ` maubot.yaml ` and some Python modules should be there).
25
25
3 . Install any dependencies that the plugin has into the virtualenv manually
26
26
(they should be listed in ` maubot.yaml ` ).
27
27
4 . Copy the [ standalone example config] to the same directory and fill it out.
28
- * If the plugin has a config, you should copy the contents from the plugin's
29
- ` base-config.yaml ` into the ` plugin_config ` object in the standalone config,
30
- then fill it out as needed.
28
+ * If the plugin has a config, you should copy the contents from the plugin's
29
+ ` base-config.yaml ` into the ` plugin_config ` object in the standalone config,
30
+ then fill it out as needed.
31
31
5 . Run the bot with ` python -m maubot.standalone `
32
32
33
33
[ standalone example config ] : https://github.com/maubot/maubot/blob/master/maubot/standalone/example-config.yaml
0 commit comments