/[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 599 by rakinar2, Wed Aug 7 14:51:05 2024 UTC revision 632 by rakinar2, Thu Oct 10 17:53:11 2024 UTC
# Line 1  Line 1 
1  ---  ---
2  title: Getting Started - SudoBot  title: Getting Started
3  short_name: Getting Started  short_name: Getting Started
4  ---  ---
5    
# 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  Before you start, you need to have the following installed on your system:  <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:
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.
27  - A [PostgreSQL](https://www.postgresql.org/) database server. You can use a local server or use a cloud service like [Supabase](https://supabase.com/).  - A [PostgreSQL](https://www.postgresql.org/) database server. You can use a local server or use a cloud service like [Supabase](https://supabase.com/).
# Line 71  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 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 **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    
# Line 116  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 125  DB_URL=postgresql://username:password@ho Line 130  DB_URL=postgresql://username:password@ho
130  # Replace `your-jwt-secret` with the generated secret.  # Replace `your-jwt-secret` with the generated secret.
131  JWT_SECRET=your-jwt-secret  JWT_SECRET=your-jwt-secret
132    
133    # The directory where the bot will store persistent data like
134    # configuration files, logs, and more.
135    SUDO_PREFIX=/path/to/sudobot/storage
136    
137  # Optionally, you can uncomment the following to turn on debug mode  # Optionally, you can uncomment the following to turn on debug mode
138  # to see more detailed logs, and enable certain development features.  # to see more detailed logs, and enable certain development features.
139    
# Line 141  The guild-wide configuration file is `co Line 150  The guild-wide configuration file is `co
150  The files are located at `config/` in the project root. These configuration files don't contain any specific setting, they are just a starting point for you to configure the bot.  The files are located at `config/` in the project root. These configuration files don't contain any specific setting, they are just a starting point for you to configure the bot.
151  You can edit these files to your liking.  You can edit these files to your liking.
152    
153    Then, go to the `SUDO_PREFIX` directory, and copy the `config` directory to the `SUDO_PREFIX` directory.
154    This should also copy the `config.json` and `system.json` files to the `SUDO_PREFIX` directory, that you just edited.
155    
156    **Remember, this step is important. Otherwise, any updates to the configuration files will be lost when you update the bot using Git.**
157    
158  To see all the possible configuration options, please refer to these schema files:  To see all the possible configuration options, please refer to these schema files:
159    
160  - [Guild Configuration Schema](https://github.com/onesoft-sudo/sudobot/blob/main/src/main/typescript/schemas/GuildConfigSchema.ts)  - [Guild Configuration Schema](https://github.com/onesoft-sudo/sudobot/blob/main/src/main/typescript/schemas/GuildConfigSchema.ts)
# Line 209  To force the bot to clear the commands g Line 223  To force the bot to clear the commands g
223  ./blazew run -- -c -g  ./blazew run -- -c -g
224  ```  ```
225    
226    ## Windows Compatibility
227    
228    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.
229    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.
230    
231    **First of all**, BlazeBuild on Windows is still experimental, known to have some issues. So please run the following commands as alternatives:
232    
233    **Install dependencies**
234    
235    ```bash
236    bun install
237    ```
238    
239    If using Node:
240    
241    ```bash
242    npm install -D
243    ```
244    
245    You might get an error saying something like `symlink(): Operation not permitted` &mdash; this is fine and you can safely ignore it.
246    
247    **Build the project (Skip this if using Bun)**
248    
249    ```bash
250    npm run build
251    ```
252    
253    **Copy the resource files**
254    
255    Please copy the following resources from `src` to `build`:
256    
257    * `src/main/resources` should be copied to `build/out/main` and the name should still be `resources`
258    
259    **Run the Database Migrations**
260    
261    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:
262    
263    ```typescript
264    import "dotenv/config";
265    
266    const { drizzle } = await import(String("drizzle-orm/node-postgres"));
267    const { migrate } = await import(String("drizzle-orm/node-postgres/migrator"));
268    const { Pool } = await import(String("pg"));
269    
270    const pool = new Pool({
271        connectionString: process.env.DB_URL
272    });
273    
274    const db = drizzle(pool);
275    await migrate(db, { migrationsFolder: "drizzle" });
276    await pool.end();
277    ```
278    
279    Then run this file:
280    
281    ```bash
282    bun migrate.ts
283    ```
284    
285    If you'd like to use Node.js for this, then create a `migrate.js` file instead and paste the following:
286    
287    ```javascript
288    require("dotenv/config");
289    
290    async function main() {
291        const { drizzle } = await import(String("drizzle-orm/node-postgres"));
292        const { migrate } = await import(String("drizzle-orm/node-postgres/migrator"));
293        const { Pool } = await import(String("pg"));
294        
295        const pool = new Pool({
296            connectionString: process.env.DB_URL
297        });
298        
299        const db = drizzle(pool);
300        await migrate(db, { migrationsFolder: "drizzle" });
301        await pool.end();
302    }
303    
304    main();
305    ```
306    
307    And run:
308    
309    ```bash
310    node migrate.js
311    ```
312    
313    And if everything was correctly set up, your database will have the new tables created for SudoBot.
314    
315    **Starting the Bot**
316    
317    Be sure to set up the configuration files before starting the bot! After doing that, run the following:
318    
319    ```bash
320    bun dev
321    ```
322    
323    Or, if using Node:
324    
325    ```bash
326    npm run start
327    ```
328    
329    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`.
330    
331  ## Emojis  ## Emojis
332    
333  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).
# Line 223  In case if you're facing issues, feel fr Line 342  In case if you're facing issues, feel fr
342    
343  -   Email: [rakinar2@onesoftnet.eu.org](mailto:rakinar2@onesoftnet.eu.org)  -   Email: [rakinar2@onesoftnet.eu.org](mailto:rakinar2@onesoftnet.eu.org)
344  -   Discord: [@rakinar2](https://discord.com/users/774553653394538506)  -   Discord: [@rakinar2](https://discord.com/users/774553653394538506)
345  -   Discord Servers: [Official OSN Server](https://discord.gg/JJDy9SHzGv)  -   Discord Servers: [Official OSN Server](https://sudobot.online/discord)
346    
347  Give the repository a star to show your support! We'll be really thankful if you do.  Give the repository a star to show your support! We'll be really thankful if you do.

Legend:
Removed from v.599  
changed lines
  Added in v.632

team@onesoftnet.eu.org
ViewVC Help
Powered by ViewVC 1.1.26