Switch database provider from PostgreSQL to SQLite
Updated the database provider in the program configuration to use SQLite instead of PostgreSQL. This change simplifies local development setup and reduces dependencies.
This commit is contained in:
parent
4ded6c0e46
commit
596d85f0b9
|
|
@ -46,7 +46,7 @@ using StackExchange.Redis;
|
|||
// ReSharper disable RedundantAssignment
|
||||
|
||||
const PersistenceProvider persistenceProvider = PersistenceProvider.EntityFrameworkCore;
|
||||
const SqlDatabaseProvider sqlDatabaseProvider = SqlDatabaseProvider.PostgreSql;
|
||||
const SqlDatabaseProvider sqlDatabaseProvider = SqlDatabaseProvider.Sqlite;
|
||||
const bool useHangfire = false;
|
||||
const bool useQuartz = true;
|
||||
const bool useMassTransit = true;
|
||||
|
|
|
|||
Loading…
Reference in a new issue