Skip to content

Commit

Permalink
Switch database provider to SQLite
Browse files Browse the repository at this point in the history
Updated the `DatabaseProvider` setting in `appsettings.json` from MySQL to SQLite. This change likely simplifies development or testing by using a lightweight, file-based database.
  • Loading branch information
sfmskywalker committed Dec 28, 2024
1 parent 4ed58c6 commit c5bf6fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apps/Elsa.Server.Web/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"RabbitMq": "amqp://guest:guest@localhost:5672",
"Redis": "localhost:6379,abortConnect=false"
},
"DatabaseProvider": "MySql",
"DatabaseProvider": "Sqlite",
"Multitenancy": {
"Tenants": [
{
Expand Down

0 comments on commit c5bf6fd

Please sign in to comment.