From 3ec078053d7098055e3d22f785419cf7b51bc9d4 Mon Sep 17 00:00:00 2001 From: LD-Reborn Date: Sat, 7 Jun 2025 17:43:48 +0200 Subject: [PATCH] Updated database setup to reflect the CLI removal --- docs/Server.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/Server.md b/docs/Server.md index 252602e..9975bc9 100644 --- a/docs/Server.md +++ b/docs/Server.md @@ -23,7 +23,6 @@ Download the [.NET SDK](https://dotnet.microsoft.com/en-us/download) or follow t `CREATE DATABASE embeddingsearch; use embeddingsearch;` 4. Create the user (replace "somepassword! with a secure password): `CREATE USER 'embeddingsearch'@'%' identified by "somepassword!"; GRANT ALL ON embeddingsearch.* TO embeddingsearch; FLUSH PRIVILEGES;` -5. Create the tables using the CLI tool: `cd src/cli; dotnet build` and `bin/Debug/net8.0/cli -h $mysql_ip -p $mysql_port -U $mysql_username -P $mysql_password --database --setup` (replace the variables with the actual values) # Configuration ## Environments