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
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
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>
Run the dtos package.json script to update your server dtos:
$ x scripts dtos