Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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şkenleri

Bu 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.