/[sudobot]/trunk/docs/app/(docs)/getting-started/page.mdx
ViewVC logotype

Diff of /trunk/docs/app/(docs)/getting-started/page.mdx

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 593 by rakinar2, Sat Aug 3 16:15:12 2024 UTC revision 623 by rakinar2, Fri Aug 30 10:10:15 2024 UTC
# Line 17  This guide will help you get started wit Line 17  This guide will help you get started wit
17    
18  ## Prerequisites  ## Prerequisites
19    
20    <Callout type="warning">
21        This guide assumes you have a Linux/Unix-based system where you'll install SudoBot. Windows users, please [scroll down](#windows-compatibility) to see how you can run SudoBot on Windows.
22    </Callout>
23    
24  Before you start, you need to have the following installed on your system:  Before you start, you need to have the following installed on your system:
25    
26  - A Discord API Application token (bot token). Go to the [Discord Developer Portal](https://discord.com/developers/applications) to create a new application, and get the token.  - A Discord API Application token (bot token). Go to the [Discord Developer Portal](https://discord.com/developers/applications) to create a new application, and get the token.
# Line 55  Next, navigate to the directory where yo Line 59  Next, navigate to the directory where yo
59  cd sudobot  cd sudobot
60  ```  ```
61    
62    ### Building SudoBot for Node.js
63    
64  Now, to build the project, we'll use [BlazeBuild](https://github.com/onesoft-sudo/sudobot/tree/main/blazebuild), which is a blazingly fast build tool, for TypeScript and JavaScript projects.  Now, to build the project, we'll use [BlazeBuild](https://github.com/onesoft-sudo/sudobot/tree/main/blazebuild), which is a blazingly fast build tool, for TypeScript and JavaScript projects.
65  To use BlazeBuild, you don't need to install anything including BlazeBuild itself, as it will be installed and set-up automatically during the build process.  To use BlazeBuild, you don't need to install anything including BlazeBuild itself, as it will be installed and set-up automatically during the build process.
66  BlazeBuild will also make sure to install any missing SDKs or tools required for building the project.  BlazeBuild will also make sure to install any missing SDKs or tools required for building the project.
# Line 69  This will build, compile and package the Line 75  This will build, compile and package the
75  Depending on your system, the build process may take a few seconds to a few minutes to complete.  Depending on your system, the build process may take a few seconds to a few minutes to complete.
76  We recommend using a system with at least 8GB of RAM and 2 CPU cores for faster build times.  We recommend using a system with at least 8GB of RAM and 2 CPU cores for faster build times.
77    
78  If you don't have enough resources, this command will fail with heap allocation errors. If that happens, or if you don't want to build it yourself, don't worry. You can download prebuilt versions for every release. The builds are tested on Node.js **v21**, however they should also work with **v20**.  If you don't have enough memory, this command might fail with heap allocation errors. If that happens, or if you don't want to build it yourself, don't worry. You can download prebuilt versions for every release. The builds are tested on Node.js **v22**, however they should also work with **v20** and **v21**.
79  You might see that only Linux and macOS (darwin) releases are available. This doesn't mean you cannot run the bot on Windows systems - only the native bindings are platform dependent. You don't need to worry about that in most cases and the bot will just work fine.  You might see that only Linux and macOS (darwin) releases are available. This doesn't mean you cannot run the bot on Windows systems - only the native bindings are platform dependent. You don't need to worry about that in most cases and the bot will just work fine.
80  You can download the prebuilt versions in the GitHub releases page: https://github.com/onesoft-sudo/sudobot/releases/latest  You can download the prebuilt versions in the GitHub releases page: https://github.com/onesoft-sudo/sudobot/releases/latest
81    
82  As always if you ever encounter errors with commands or you see something is not working as you expect, you can join our [Discord Server](https://discord.gg/892GWhTzgs) and ask for help!  As always if you ever encounter errors with commands or you see something is not working as you expect, you can join our [Discord Server](https://discord.gg/892GWhTzgs) and ask for help!
83    
84    ### Building SudoBot for Bun
85    
86    If you'd like to use Bun instead of Node.js to run SudoBot, then you don't need to build the bot because Bun supports TypeScript natively. Just skip to the next part and follow the commands and instructions specifically for Bun.
87    
88  ## Configuration  ## Configuration
89    
90  After building the project, you need to configure the bot to run on your server.  After building the project, you need to configure the bot to run on your server.
# Line 110  HOME_GUILD_ID=your-home-guild-id Line 120  HOME_GUILD_ID=your-home-guild-id
120  # separately, you can format it to look like this.  # separately, you can format it to look like this.
121  DB_URL=postgresql://username:password@hostname:port/database  DB_URL=postgresql://username:password@hostname:port/database
122    
123  # JWT Secret for generating JWT tokens.  # JWT Secret for generating JWT tokens. This is like a password for
124  # On systems with openssl installed, you can generate a random  # the bot's internal use.
125    # On Linux/Unix systems with OpenSSL installed, you can generate a random
126  # secret using the following command:  # secret using the following command:
127  #  #
128  #    openssl rand -base64 32  #    openssl rand -base64 32
# Line 203  To force the bot to clear the commands g Line 214  To force the bot to clear the commands g
214  ./blazew run -- -c -g  ./blazew run -- -c -g
215  ```  ```
216    
217    ## Windows Compatibility
218    
219    SudoBot was created with Linux/Unix-based systems in mind, since in most cases you're going to end up running SudoBot on a production server which is usually Linux/Unix-based.
220    However, that doesn't mean you can't run SudoBot on Windows &mdash; but please keep in mind that some things might need tweaks or you might need to do some things differently to make it work on Windows.
221    
222    **First of all**, BlazeBuild on Windows is still experimental, known to have some issues. So please run the following commands as alternatives:
223    
224    **Install dependencies**
225    
226    ```bash
227    bun install
228    ```
229    
230    If using Node:
231    
232    ```bash
233    npm install -D
234    ```
235    
236    **Build the project (Skip this if using Bun)**
237    
238    ```bash
239    npm run build
240    ```
241    
242    **Run the Database Migrations**
243    
244    Please first make sure you have the right credentials in your `.env` file. Then, create a new file named `migrate.ts` in the project root with the following contents:
245    
246    ```typescript
247    import "dotenv/config";
248    
249    const { drizzle } = await import(String("drizzle-orm/node-postgres"));
250    const { migrate } = await import(String("drizzle-orm/node-postgres/migrator"));
251    const { Pool } = await import(String("pg"));
252    
253    const pool = new Pool({
254        connectionString: process.env.DB_URL
255    });
256    
257    const db = drizzle(pool);
258    await migrate(db, { migrationsFolder: "drizzle" });
259    await pool.end();
260    ```
261    
262    Then run this file:
263    
264    ```bash
265    bun migrate.ts
266    ```
267    
268    And if everything was correctly set up, your database will have the new tables created for SudoBot.
269    
270    **Starting the Bot**
271    
272    Be sure to set up the configuration files before starting the bot! After doing that, run the following:
273    
274    ```bash
275    bun dev
276    ```
277    
278    Or, if using Node:
279    
280    ```bash
281    npm run start
282    ```
283    
284    Also note, to pass any options that you could pass to `./blazew run`, you can just pass it normally to `bun dev` if using `bun`, or after a `--` argument if using `npm run start`.
285    
286  ## Emojis  ## Emojis
287    
288  The bot uses some custom emojis and it will try to find those emojis in the Home Guild (The main server, which is configured in `HOME_GUILD_ID` environment variable).  The bot uses some custom emojis and it will try to find those emojis in the Home Guild (The main server, which is configured in `HOME_GUILD_ID` environment variable).

Legend:
Removed from v.593  
changed lines
  Added in v.623

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26