From 59e131f1a3c41fd382cd48fe5836850e23507cff Mon Sep 17 00:00:00 2001 From: Sipke Schoorstra Date: Thu, 26 Dec 2024 12:02:54 +0100 Subject: [PATCH] Set DatabaseProvider to SQLite in appsettings.json Switched the default database provider from PostgreSQL to SQLite in the appsettings.json configuration file. This change enables the application to use SQLite for its database operations. --- src/apps/Elsa.ServerAndStudio.Web/appsettings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/Elsa.ServerAndStudio.Web/appsettings.json b/src/apps/Elsa.ServerAndStudio.Web/appsettings.json index e95f0771c..0e85580b3 100644 --- a/src/apps/Elsa.ServerAndStudio.Web/appsettings.json +++ b/src/apps/Elsa.ServerAndStudio.Web/appsettings.json @@ -15,7 +15,7 @@ "SqlServer": "Server=localhost;Database=elsa;User Id=sa;Password=Password12!", "PostgreSql": "Server=localhost;Username=elsa;Database=elsa;Port=5432;Password=elsa;SSLMode=Prefer;MaxPoolSize=2000;Timeout=60" }, - "DatabaseProvider": "PostgreSql", + "DatabaseProvider": "Sqlite", "Hosting": { "BaseUrl": "https://localhost:8080", "BasePath": ""