14 |
<p align="center"> |
<p align="center"> |
15 |
A Discord bot for moderation purposes. |
A Discord bot for moderation purposes. |
16 |
</p> |
</p> |
17 |
|
|
18 |
|
### Getting started |
19 |
|
|
20 |
|
You can request an invite for SudoBot [here](https://sudobot.everything-server.ml/). |
21 |
|
Alternatively, you can create your own Discord API application and then host SudoBot. |
22 |
|
|
23 |
|
### Setup for Custom Hosting |
24 |
|
|
25 |
|
First, download the latest release or clone the repo by running: |
26 |
|
|
27 |
|
``` |
28 |
|
git clone https://github.com/onesoft-sudo/sudobot |
29 |
|
``` |
30 |
|
|
31 |
|
Then go inside the project directory, and run the following commands: |
32 |
|
|
33 |
|
``` |
34 |
|
sh init.sh |
35 |
|
touch config/config.json .env |
36 |
|
echo "{}" > config/snippets.json |
37 |
|
npm install |
38 |
|
npm install -D |
39 |
|
``` |
40 |
|
|
41 |
|
Build the project: |
42 |
|
|
43 |
|
``` |
44 |
|
npm run build |
45 |
|
``` |
46 |
|
|
47 |
|
Deploy slash commands globally: |
48 |
|
|
49 |
|
``` |
50 |
|
node deploy-commands.js |
51 |
|
``` |
52 |
|
|
53 |
|
Start the bot: |
54 |
|
|
55 |
|
``` |
56 |
|
npm start |
57 |
|
``` |