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.
This commit is contained in:
Sipke Schoorstra 2024-12-26 12:02:54 +01:00
parent 62df21cbaf
commit 59e131f1a3

View file

@ -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": ""