https://github.com/coder/codercord
A Discord bot for our community server
https://github.com/coder/codercord
Last synced: 15 days ago
JSON representation
A Discord bot for our community server
- Host: GitHub
- URL: https://github.com/coder/codercord
- Owner: coder
- Created: 2022-08-13T15:49:26.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-13T16:43:11.000Z (about 1 month ago)
- Last Synced: 2025-04-02T22:35:28.171Z (23 days ago)
- Language: TypeScript
- Homepage: https://discord.gg/coder
- Size: 242 KB
- Stars: 7
- Watchers: 3
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Codercord
A Discord bot for the Coder community server written in Dart.
## How to run
1. Get the [Dart SDK](https://dart.dev/get-dart)
2. Clone the repository```sh
git clone [email protected]:coder/codercord.git
cd codercord
```3. Run the project
```sh
dart run
```You can also pre-compile the binary instead of using ``dart run`` everytime
```sh
dart compile exe bin/codercord.dart -o codercord
./codercord
```## Configuration
Environment variables :
* ``CODERCORD_TOKEN`` : The Discord bot's token
* ``CODERCORD_TOML_PATH`` : The path of the toml config file (default: config.toml)
(relative to process working directory if no absolute path is provided)Example ``config.toml`` provided [here](https://github.com/coder/codercord/blob/main/config.toml.example)