Skarlett / coggie-bot

text bot utilities in rust

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

coggie-bot

Hi! This is an open source discord bot written in rust.

Controls

on-event event-body action taken
reaction đź”– dm message to reactor with copy of contents
message @version say package's version
message @rev say git hash built-from
message @contribute show list of things we want to have, documentation

Contributing

All contributions are welcome. When contributing, please pull request to a new branch, or use the pull. Add your name to the contributors.txt. Please describe the changes made, and add the features to the list above.

Roadmap

  • Nix
  • pre-commit hooks
  • Automatic update delivery

Run

DISCORD_TOKEN=XXX nix run github:skarlett/coggie-bot#coggiebot

Build

Use public build cache [Nix] (Optional)

cachix use coggiebot

native

nix build github:skarlett/coggie-bot

cross compilation

# Show compilation options
nix flake show github:skarlett/coggie-bot

# cross compile
nix build github:skarlett/coggie-bot#packages.aarch64-linux

Develpoment

git clone https://github.com/skarlett/coggie-bot
cd coggie-bot
nix develop

updating dependencies

cargo update
nix flake update
nix build
git commit -a -m "update dependencies"
git push origin your-update-branch

Add to NixOS as flake

{
  description = "NixOS configuration";
  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
    coggiebot.url = "github:skarlett/coggie-bot";
  };

  outputs = { self, nixpkgs, coggiebot }:
    let
      system = "x86_64-linux";
    in {
      nixosConfigurations.hostname = nixpkgs.lib.nixosSystem {
        inherit system;
        modules = [
          # ...
          coggiebot.nixosModules.coggiebot
        ];
        
        services.coggiebot.enable = true;
        services.coggiebot.environmentFile = "/etc/coggiebot/env_vars";
      };
  };
}

continuous integration on debian

the objective of using a custom package manager is to achieve the goal of self-updating.

# jump to root
sudo su

# install nix-multiuser-mode
sh <(curl -L https://nixos.org/nix/install) --daemon

# activate PATH
# This is automatically appended into ~/.bashrc
# activate in current session
. ~/.nix-profile/etc/profile.d/nix.sh

# Add flakes to nix
echo "experimental-features = nix-command flakes" >> /etc/nix/nix.conf

adduser coggiebot
mkdir -p /var/coggiebot
chown coggiebot /var/coggiebot
su coggiebot

cd /var/coggiebot
nix build github:skarlett/coggie-bot

/var/coggie/result/enable
/var/coggie/result/start

About

text bot utilities in rust

License:BSD 2-Clause "Simplified" License


Languages

Language:Rust 60.6%Language:Nix 26.4%Language:Python 10.1%Language:Perl 2.3%Language:C 0.6%