fixed comma error, new fedora install script

This commit is contained in:
murmeldin 2025-04-13 15:34:52 +02:00
parent c84d6c5d4c
commit 5f73bcb90d
2 changed files with 21 additions and 3 deletions

View file

@ -52,9 +52,9 @@ pub const CONFIG: CfgGroup<'static> = CfgGroup {
description: "Recipient of the emails sent.",
},
CfgField::Default {
key: "in-reply-to"
default: "intern@berlin.ccc.de"
description: "Person to reply to"
key: "in-reply-to",
default: "intern@berlin.ccc.de",
description: "Person to reply to",
}
],
};

View file

@ -0,0 +1,18 @@
#!/bin/sh
# The plenum bot works when being run on a ubuntu-server
# instance with these commands ran previously.
# For other distros, please adapt these instructions
# so you have the same packages installed as well.
#
# This script can also be run in order to update
# the bot and its dependencies to the newest version.
# Optionally, if you don't have rust installed, you should do it here:
# https://www.rust-lang.org/tools/install
git pull
sudo dnf update -y
sudo dnf install gcc rust-openssl-devel pandoc pkg-config rust-libsqlite3-sys+buildtime_bindgen-devel.noarch
cargo install --path $HOME/plenum-bot
./update_or_create_systemd_service.sh