first commit

This commit is contained in:
yeongaori
2025-08-07 01:18:49 +09:00
commit 13bf4ca7a4
23 changed files with 2614 additions and 0 deletions

22
README.md Executable file
View File

@@ -0,0 +1,22 @@
# DiscordGaori
Rewritten [DiscordGaori](https://github.com/yeongaori/DiscordGaori-StarLight) with Node.js
## Features
### Rich Presence (RPC)
This bot supports Discord's Rich Presence feature, which allows you to customize the bot's status.
To configure the RPC, you need to set the following variables in your `.env` file:
- `RPC_ENABLED`: Set to `true` to enable RPC, or `false` to disable it.
- `RPC_ACTIVITY_NAME`: The name of the activity you want the bot to display (e.g., "with Gaori").
- `RPC_ACTIVITY_TYPE`: The type of activity. Can be one of `Playing`, `Listening`, `Watching`, `Streaming`, or `Competing`.
Example `.env` configuration:
```
RPC_ENABLED=true
RPC_ACTIVITY_NAME="전역일 계산"
RPC_ACTIVITY_TYPE=Playing
```