Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/romanbaba/hesapmakinesi
👨🔬 Basit fonksiyonlarıyla Discord üzerinden matematik işlemlerini yapmaya imkan sağlayan bir bot.
https://github.com/romanbaba/hesapmakinesi
bot discord math
Last synced: 2 months ago
JSON representation
👨🔬 Basit fonksiyonlarıyla Discord üzerinden matematik işlemlerini yapmaya imkan sağlayan bir bot.
- Host: GitHub
- URL: https://github.com/romanbaba/hesapmakinesi
- Owner: romanbaba
- Created: 2023-11-29T12:52:07.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-29T17:31:43.000Z (about 1 year ago)
- Last Synced: 2023-12-21T20:23:42.842Z (about 1 year ago)
- Topics: bot, discord, math
- Language: TypeScript
- Homepage:
- Size: 12.7 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Discord ile basit fonksiyonlu hesap makinesi ❤
Bu projenin genel amacı Discord ile beraber basit fonksiyonlara sahip bir hesap makinesinin yapılışıdır.## Nasıl görünüyor?
## Yükleme
Projenin gereksinimi olan paketleri mevcut paket yöneticiniz ile projeye indirebilirsiniz, ben genel olarak `pnpm` kullanıyorum.```bash
npm install
pnpm install
yarn
```
## Ortam DeğişkenleriBu projeyi çalıştırmak için aşağıdaki ortam değişkenlerini .env dosyanıza eklemeniz gerekecek:
`DISCORD_BOT_TOKEN`
`DISCORD_BOT_ID`
## Örnek bir komut objesi:```ts
import type { CommandOptions } from '@/types.ts';export const CommandData: CommandOptions = {
data: new SlashCommandBuilder()
.setName('test')
.setDescription('Örnek bir komut örneğidir, es geçiniz!'),
async run(interaction) {},
};
```## Örnek bir etkinlik objesi:
```ts
import type { EventOptions } from '@/types.ts';export const EventData: EventOptions<'ready'> = {
category: 'ready',
run() {},
};
```
## Lisans[GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.html/)
## Yazarlar ve Teşekkür- [@ewgsta](https://www.github.com/ewgsta) tarafından kodlanmış ve tasarlanmıştır, izni dışında hiç bir yerde paylaşılamaz.