https://github.com/starrfox/discord-chan
A Discord chat bot
https://github.com/starrfox/discord-chan
discord discord-bot discord-py
Last synced: 8 months ago
JSON representation
A Discord chat bot
- Host: GitHub
- URL: https://github.com/starrfox/discord-chan
- Owner: StarrFox
- License: agpl-3.0
- Created: 2019-01-25T08:59:39.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2025-10-20T02:15:16.000Z (9 months ago)
- Last Synced: 2025-10-20T06:46:30.504Z (9 months ago)
- Topics: discord, discord-bot, discord-py
- Language: Python
- Homepage:
- Size: 2.2 MB
- Stars: 10
- Watchers: 1
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Discord Chan
A general purpose discord bot made with [discord.py](https://github.com/Rapptz/discord.py)
## Running
```shell script
nix run github:StarrFox/Discord-chan
```
you can pass a path to your own token file with --secret
## NixOS module
there is also a nixos module you can use
include the module with
```nix
{
inputs.discord_chan.url = "github:StarrFox/Discord-chan";
outputs = { self, nixpkgs, discord_chan }: {
# change `yourhostname` to your actual hostname
nixosConfigurations.yourhostname = nixpkgs.lib.nixosSystem {
# change to your system:
system = "x86_64-linux";
modules = [
./configuration.nix
discord_chan.nixosModules.default
];
};
};
}
```
then use it like
```nix
services.discord_chan = {
enable = true;
tokenFile = "path/to/token_file";
};
```