Skip to content

This repo hosts a Blazor app, Microsoft's tech for building interactive web UIs with C#/.NET. It's a video game catalog showcasing basic CRUD operations with a sleek UI and server integration

License

Notifications You must be signed in to change notification settings

jfab91/blazor-video-game-catalog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Game Store

Starting SQL Server Docker Container

$sa_password = "SA PASSWORD HERE"

docker run --cap-add SYS_PTRACE -e "ACCEPT_EULA=1" -e "MSSQL_SA_PASSWORD=$sa_password" -p 1433:1433 --name azuresqledge -d -v sqldata:/var/opt/mssql mcr.microsoft.com/azure-sql-edge

Setting DB Connection String in Secret Manager

$sa_password = "SA PASSWORD HERE"

dotnet user-secrets set "ConnectionStrings:GameStoreContext" "Server=localhost;Database=GameStore; User Id=sa; Password=$sa_password; TrustServerCertificate=True;"

Secret Manager is intended to be used only on local development environment

About

This repo hosts a Blazor app, Microsoft's tech for building interactive web UIs with C#/.NET. It's a video game catalog showcasing basic CRUD operations with a sleek UI and server integration

Topics

Resources

License

Stars

Watchers

Forks