Update 'Server Install'

randy 2024-11-17 19:14:57 -07:00
parent d42b15c512
commit 066beb309d

@ -3,18 +3,22 @@ These instructions are for Debian Linux. If you want to run on another OS, you'l
Install dependencies:
```sudo apt-get install openjdk-11-jdk
```
sudo apt-get install openjdk-11-jdk
apt install git
apt install git-lfs
sudo git lfs install
sudo git clone https://git.snowlab.cc/Snowscape/Server.git
sudo git lfs pull```
sudo git lfs pull
```
Setting up the user database:
```sudo apt install mariadb-server
```
sudo apt install mariadb-server
cd Server/db_exports
sudo mysql
source global.sql
alter user 'root'@'localhost' identified via mysql_native_password using '';
exit```
exit
```