All checks were successful
continuous-integration/drone/pr Build is passing
A builder for mediapart have been added. No generic builder have been created as there is no usecase yet. Some documentation have been added, roadmap and scope have been clarified and chatbot have been lightly documented.
20 lines
403 B
Markdown
20 lines
403 B
Markdown
---
|
|
title: run the chatbot
|
|
---
|
|
|
|
1. You must first configure matrix login, every variable in [the_reference](../reference/chatbot_configuration.md) is mandatory.
|
|
|
|
```env
|
|
CRIEUR_MATRIX_USER=user
|
|
CRIEUR_MATRIX_PASSWORD=password
|
|
CRIEUR_MATRIX_HOMESERVER=https://homeserv.er
|
|
CRIEUR_MATRIX_ROOM=roomid
|
|
```
|
|
|
|
You can put it in a `.env` file.
|
|
|
|
2. run the chatbot
|
|
```
|
|
cargo run --release --bin crieur-chatbot
|
|
```
|