From bbbac28221dbdbbe1923ef0555a6a1bdc583c6d5 Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Sun, 1 Aug 2021 16:32:12 -0400 Subject: [PATCH] keyz --- src/TerribleDev.Blog.Web/Posts/Hosting-dotnet-core-on-heroku.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TerribleDev.Blog.Web/Posts/Hosting-dotnet-core-on-heroku.md b/src/TerribleDev.Blog.Web/Posts/Hosting-dotnet-core-on-heroku.md index 979f600..0dc7c4d 100644 --- a/src/TerribleDev.Blog.Web/Posts/Hosting-dotnet-core-on-heroku.md +++ b/src/TerribleDev.Blog.Web/Posts/Hosting-dotnet-core-on-heroku.md @@ -101,7 +101,7 @@ services: ## Encryption keys -Ok so you've got the basics running, but you need to store your encryption keys. We can store them in the database using entity framework! Add this to your `startup.cs` `ConfigureServices` Method +Ok so you've got the basics running, but you need to store your encryption keys. We can store them in the database using entity framework! Add this to your `startup.cs` `ConfigureServices` Method. Make sure you `dotnet add package Microsoft.AspNetCore.DataProtection.EntityFrameworkCore` ```cs