Skip to content

NetCoreTemplates/grpc

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 

grpc

gRPC .NET 6.0 Web Template

Browse source code and install with x new dotnet tool:

$ dotnet tool install -g x

$ x new grpc ProjectName

Alternatively write new project files directly into an empty repository, using the Directory Name as the ProjectName:

$ git clone https://github.com/<User>/<ProjectName>.git
$ cd <ProjectName>
$ x new grpc

Please refer to gRPC docs to learn more about ServiceStack gRPC and SSL Configuration:

By default this uses ASP.NET Core's trusted Development certificate (typically created on install), or can be configured with:

$ dotnet dev-certs https --trust

This template also includes OpenSSL generation scripts in scripts/ should you prefer to use your own self-signed certificates:

$ cd scripts

Generating a new Development Certificate

Windows:

C:\> bash gen-dev.https.sh

Linux or WSL Bash:

$ ./gen-dev.https.sh

Options:

$ gen-dev.https.sh <PASSWORD>

Import the pfx certificate:

$ powershell Import-PfxCertificate -FilePath dev.pfx Cert:\LocalMachine\My -Password (ConvertTo-SecureString grpc -asplaintext -force) -Exportable

Trust the certificate by importing the pfx certificate into your trusted root:

$ powershell Import-Certificate -FilePath dev.crt -CertStoreLocation Cert:\CurrentUser\Root

Generating a new Production Certificate

Either replace DOMAIN=... and PASSWORD=... with your domain and password or specify them as arguments, e.g:

Windows:

C:\> bash gen-prod.https.sh <DOMAIN> <PASSWORD>

Linux or WSL Bash:

$ ./gen-prod.https.sh <DOMAIN> <PASSWORD>

Update Server TypeScript DTOs

Run the dtos package.json script to update your server dtos:

$ x scripts dtos