# Installing the backend

The launcher server uses DotNet version 8.0. You need to install this software on your VPS. In addition, you need to deploy a MySQL database (MariaDB) and configure it.

Installing dotnet 8.0:

```sh
sudo apt update 
wget -q https://packages.microsoft.com/config/ubuntu/22.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
sudo apt update
sudo apt install -y dotnet-sdk-8.0
```

Installing MySql:

```bash
apt update
sudo apt install mariadb-server 
sudo systemctl start mariadb.service
mysql 
CREATE USER 'launcher'@'%' IDENTIFIED BY 'YOUR PASSWORD';
GRANT ALL PRIVILEGES ON *.* TO 'launcher'@'%' WITH GRANT OPTION;
CREATE DATABASE launcher;

```

You may also need an nginx server if you don't have one:

```bash
apt install nginx
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.taigo.xyz/installing/installing-the-backend.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
