Bot Mattermost écrit en Rust faisant la liaison entre Mattermost et Discord (WIP)
This repository has been archived on 2022-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
Find a file
2021-12-21 10:14:59 +01:00
src fix crash when cannot connect to the api 2021-12-21 10:04:51 +01:00
.gitignore Add token storage in a .env file 2021-12-03 10:48:11 +01:00
Cargo.lock use tokio instead of blocking the main thread 2021-12-21 09:59:35 +01:00
Cargo.toml in line with the official documentation 2021-12-21 10:00:45 +01:00
README.md add docker config 2021-12-21 10:14:59 +01:00

matter_bot

Pré-requis

openssl requis par mattermost_api

sudo apt install libssl-dev

.env placé dans la racine du projet qui contient le token et l'URL, exemple :

TOKEN_MATTERMOST=votre_token_ici
MATTERMOST_INSTANCE_URL=url_du_site_ici, ex: https://talk.up8.edu

Tests en local

En local, j'ai utilisé Docker pour héberger mon instance de Mattermost et pouvoir faire des tests, voici le docker-compose que j'ai utilisé :

version: "2"
services:
  mattermost:
    image: mattermost/mattermost-preview:latest # version preview parce que c'est juste pour testé
    container_name: Mattermost
    ports:
      - 8065:8065 # cf. documentation officielle : https://docs.mattermost.com/install/setting-up-local-machine-using-docker.html
    restart: unless-stopped

Sources


Projet ne fonctionne pas, et a peu de chance d'aboutir car le mattermost de la fac se connecte via Gitlab et aucune librarie ne supporte ceci.