박건희

Fixed some detail

...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
2 2
3 ## About The Project 3 ## About The Project
4 4
5 -* 도라에몽처럼 각종 편의기능을 통합적(All-in-One)으로 서비스할 수 있는 디스코드 챗봇을 말합니다. 5 +* 도라에몽처럼 각종 편의기능을 통합적(All-in-One)으로 서비스할 수 있는 디스코드 챗봇니다.
6 - 6 +
7 * 현재 제공하고 있는 기능으로는 아래 세 가지가 있습니다. 7 * 현재 제공하고 있는 기능으로는 아래 세 가지가 있습니다.
8 - 이미지 텍스트 인식 (OCR) 8 - 이미지 텍스트 인식 (OCR)
9 - 언어번역 9 - 언어번역
...@@ -12,12 +12,16 @@ ...@@ -12,12 +12,16 @@
12 ## Built With 12 ## Built With
13 13
14 * [Node.js](https://nodejs.org/ko/) 14 * [Node.js](https://nodejs.org/ko/)
15 +* [discord.js](https://discord.js.org)
16 +* [puppeteer](https://pptr.dev/)
17 +* [tesseract.js](https://tesseract.projectnaptha.com/)
18 +* [translatte](https://www.npmjs.com/package/translatte)
15 19
16 ## Getting Started 20 ## Getting Started
17 21
18 * [봇 초대 링크](https://discord.com/api/oauth2/authorize?client_id=974262592388337695&permissions=8&scope=bot) 22 * [봇 초대 링크](https://discord.com/api/oauth2/authorize?client_id=974262592388337695&permissions=8&scope=bot)
19 23
20 -* aws EC2 사용해서 배포 예정 24 +* aws EC2 사용해서 배포
21 25
22 ## Installation 26 ## Installation
23 27
...@@ -55,7 +59,7 @@ ...@@ -55,7 +59,7 @@
55 ![ocr_실행화면](/uploads/b2b5490a79eadad12d361c4ca9c62d2a/ocr_실행화면.png) 59 ![ocr_실행화면](/uploads/b2b5490a79eadad12d361c4ca9c62d2a/ocr_실행화면.png)
56 60
57 **번역, 나라 명령어 실행화면** 61 **번역, 나라 명령어 실행화면**
58 -![번역_실행화면](/uploads/024cdd0bf43f601f320378316a9c83e8/번역_실행화면.png) 62 +![번역_실행화면](/uploads/c802abe42bd24fbe45792ea44c2aa2c2/번역_실행화면.png)
59 63
60 **문구 명령어 실행화면** 64 **문구 명령어 실행화면**
61 ![문구_실행화면](/uploads/4984a7457ff7bc10610a823567792a3f/문구_실행화면.png) 65 ![문구_실행화면](/uploads/4984a7457ff7bc10610a823567792a3f/문구_실행화면.png)
......
1 const { Client, Intents } = require('discord.js'); 1 const { Client, Intents } = require('discord.js');
2 const Discord = require("discord.js"); 2 const Discord = require("discord.js");
3 -const { token } = require('config.json'); 3 +const { token } = require('./config.json');
4 const fs = require('fs'); 4 const fs = require('fs');
5 5
6 const client = new Client({ intents: [Intents.FLAGS.GUILDS, Intents.FLAGS.GUILD_MESSAGES] }); 6 const client = new Client({ intents: [Intents.FLAGS.GUILDS, Intents.FLAGS.GUILD_MESSAGES] });
......