Sekiban.Pure.Templates
1.0.13
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet new install Sekiban.Pure.Templates::1.0.13
This package contains a .NET Template Package you can call from the shell/command line.
Orleans Sekiban Event Sourcing Sample Project.
how to install from nuget.
dotnet new install Sekiban.Pure.Template
how to make project
dotnet new sekiban-orleans-aspire -n YourProjectName
1. App Host need to add app setting (secrets.json) postgres password.
secrets.json
{
"Parameters:postgres-password": "your_strong_password"
}
2. Optional : cluster setting etc needs to change by project
AppHost.Program.cs
var storage = builder.AddAzureStorage("azurestorage")
.RunAsEmulator(r => r.WithImage("azure-storage/azurite", "3.33.0"));
var clusteringTable = storage.AddTables("orleans-sekiban-clustering");
var grainStorage = storage.AddBlobs("orleans-sekiban-grain-state");
var postgresPassword = builder.AddParameter("postgres-password", true);
var postgres = builder
.AddPostgres("orleansSekibanPostgres", password: postgresPassword)
// .WithDataVolume() // Uncomment to use a data volume
.WithPgAdmin()
.AddDatabase("SekibanPostgres");
var orleans = builder.AddOrleans("default")
.WithClustering(clusteringTable)
.WithGrainStorage("Default", grainStorage);
var apiService = builder.AddProject<OrleansSekiban_ApiService>("apiservice")
.WithEndpoint("https", annotation => annotation.IsProxied = false)
.WithReference(postgres)
.WithReference(orleans);
AppService.Program.cs as well
builder.AddKeyedAzureTableClient("orleans-sekiban-clustering");
builder.AddKeyedAzureBlobClient("orleans-sekiban-grain-state");
builder.UseOrleans(
config =>
{
config.UseDashboard(options => { });
config.AddMemoryStreams("EventStreamProvider").AddMemoryGrainStorage("EventStreamProvider");
});
-
net9.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last Updated |
---|---|---|
1.1.5 | 156 | 7/30/2025 |
1.1.4 | 293 | 7/26/2025 |
1.1.3 | 97 | 7/18/2025 |
1.1.2 | 171 | 7/6/2025 |
1.1.1 | 124 | 7/4/2025 |
1.1.0 | 171 | 7/2/2025 |
1.0.22 | 141 | 5/17/2025 |
1.0.21 | 152 | 5/17/2025 |
1.0.20 | 173 | 5/11/2025 |
1.0.19 | 159 | 5/9/2025 |
1.0.18 | 181 | 5/8/2025 |
1.0.17 | 192 | 5/6/2025 |
1.0.16 | 175 | 5/6/2025 |
1.0.15 | 144 | 5/4/2025 |
1.0.14 | 201 | 4/20/2025 |
1.0.13 | 205 | 4/9/2025 |
1.0.12 | 204 | 4/8/2025 |
1.0.11 | 202 | 4/8/2025 |
1.0.10 | 188 | 3/12/2025 |
1.0.9 | 258 | 3/5/2025 |
1.0.8 | 270 | 3/4/2025 |
1.0.7 | 156 | 2/27/2025 |
1.0.6 | 152 | 2/26/2025 |
1.0.5 | 158 | 2/24/2025 |