From f2e9ee42b468651e3cfd15118f6124996cc9bbfd Mon Sep 17 00:00:00 2001 From: DataHearth Date: Mon, 26 Jun 2023 18:08:02 +0200 Subject: [PATCH] add readme --- README.md | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..8615ed0 --- /dev/null +++ b/README.md @@ -0,0 +1,60 @@ +# tech-bot + +## Description + +Save technologies you want to share/remember in a simple way inside Discord. + +## How to use + +### Install + +#### Docker + +```bash +export DISCORD_TOKEN=TOKEN +export ADMIN_USERS=123456789,987654321 + +docker run -d \ + --name tech-bot \ + -e DISCORD_TOKEN=$DISCORD_TOKEN \ + -e ADMIN_USERS=$ADMIN_USERS \ + -v /path/to/tech-bot/data:/data \ + --restart unless-stopped \ + gitea.antoine-langlois.net/datahearth/tech-bot +``` + +#### Manually + +```bash +export DISCORD_TOKEN=TOKEN +export ADMIN_USERS=123456789,987654321 +export DB_PATH=database.db + +git clone https://gitea.antoine-langlois.net/datahearth/tech-bot.git +cd tech-bot + +cargo build --release +./target/release/tech-bot +``` + +### Usage + +```bash +/tech help +``` + +```bash +/tech add +``` + +```bash +/tech list +``` + +```bash +/tech search +``` + +```bash +/tech remove +```