PostgreSQL
Configure PostgreSQL databases
PostgreSQL is optional and can be replaced by SQL Server instead. By default the repository is configured to run using SQL Server. In case you want to use SQL Server read SQL Server
Harmony has an dependency to PostgreSQL databases which can be installed on Windows or Linux. After installing an PostgreSQL instance, proceed by creating the required databases and configuring the connection strings for the following three databases:
Harmony: The core database used by the Harmony.Api server app, containing all the core tables and their relationships, e.g. Workspaces, Boards or Cards.
Harmony.Notifications.Jobs: The database used by the Harmony.Notifications web app, containing all the HangFire required tables and one more.
Harmony.Automations.Jobs: The database used by the Harmony.Automations web app, containing all the HangFire required tables and one more.
Harmony database configuration
Database connection string
Configure the HarmonyConnection PostgreSQL connection string existing in the appsettings.json file at the root of the Harmony.Api project to point to your PostgreSQL instance. By default it tries to connect to a local PostgreSQL instance. Change the connection string to match your environment.
Database migrations
Since Harmony can be run either using SQL Server or PostgreSQL, there are two separate class library projects for the respective migrations:
Harmony.Persistence.Migrations.SqlServer
Harmony.Persistence.Migrations.PostgreSql
In case you want to contribute and you want to add a new migration, you need to create the migration for both database providers. There are detailed instructions on how to apply or add migrations for each provider in the respective guides.
You can run the database migrations either manually or let the projects run them for you during startup.
Run migrations through Visual Studio
When running migrations through Visual Studio, open the Package Manager Console
and set the Default project
to src\Infrastructure\Harmony.Persistence. This should be the default project when running other migrations as well (NotificationContext & AutomationContext examples following)
Run the following command to create the database:
Migrations command require that you have previously setup your database connection strings properly.
In case you decide to create a new migration, follow the same procedure by replacing the command with the following:
Run migrations using a command line
You can run database migrations from a command line as well. First you need to have installed EF Core tools.
In case you had previously installed a dotnet-ef version other than the latest, update it by running the following command:
dotnet tool install --global dotnet-ef
Open a terminal and navigate at the root of the Harmony.Persistence project, where the HarmonyContext database context class exists.
Run the dotnet ef command to create the database
Just a reminder here: It's optional to run the migrations by yourself because they run by default at startup in debug mode.
To disable the automatic migrations remove the following line from the ApplicationBuilderExtensions class.
Harmony.Notifications & Harmony.Automations jobs database configuration
Database connection string
Configure the SQL Server's HarmonyJobsConnection connection strings existing in the appsettings.json file at the root of the Harmony.Notifications & Harmony.Automations projects to point to your SQL Server instance.
Harmony.Notifications appsettings.json
Harmony.Automations appsettings.json
Database migrations
Use the same process & commands you used for Harmony database and Harmony.Api projects except that you have to change the following two parameters:
-Context: NotificationContext or AutomationContext
-StartUpProject: Harmony.Notifications or Harmony.Automations
Applying migrations via dotnet-ef tools:
Applying migrations using Visual Studio package manager console:
Read next - configure the MongoDB Server
Last updated