Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions templates/content/Trax.Samples.Api/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
// process by passing mode: QUEUE. Uses an in-memory data provider by default
// so you can run it immediately without any external dependencies.
//
// To switch to PostgreSQL, replace UseInMemory() with UsePostgres(connectionString)
// and swap the Trax.Effect.Data.InMemory package for Trax.Effect.Data.Postgres.
// To switch providers, replace UseInMemory() with UseSqlite(connectionString) or
// UsePostgres(connectionString) and add the corresponding Trax.Effect.Data package.
//
// Try it:
// dotnet run
Expand Down
4 changes: 2 additions & 2 deletions templates/content/Trax.Samples.Hub/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
// hosts the Trax Dashboard. Uses an in-memory data provider by default so
// you can run it immediately without any external dependencies.
//
// To switch to PostgreSQL, replace UseInMemory() with UsePostgres(connectionString)
// and swap the Trax.Effect.Data.InMemory package for Trax.Effect.Data.Postgres.
// To switch providers, replace UseInMemory() with UseSqlite(connectionString) or
// UsePostgres(connectionString) and add the corresponding Trax.Effect.Data package.
//
// Try it:
// dotnet run
Expand Down
4 changes: 2 additions & 2 deletions templates/content/Trax.Samples.Scheduler/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
// dashboard for monitoring at /trax. Uses an in-memory data provider by
// default so you can run it immediately without any external dependencies.
//
// To switch to PostgreSQL, replace UseInMemory() with UsePostgres(connectionString)
// and swap the Trax.Effect.Data.InMemory package for Trax.Effect.Data.Postgres.
// To switch providers, replace UseInMemory() with UseSqlite(connectionString) or
// UsePostgres(connectionString) and add the corresponding Trax.Effect.Data package.
//
// Try it:
// dotnet run
Expand Down
Loading