Skip to content

A game management system built with .NET 8 WebAPI and Blazor

License

Notifications You must be signed in to change notification settings

Navid-JL/GameStore

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Game Store

Starting SQL Server Docker Container

$sa_password = "SA PASSWORD HERE"
docker run -e "ACCEPT_EULA=Y" -e "MSSQL_SA_PASSWORD=$sa_password" -e "MSSQL_PID=Evaluation" -p 1433:1433  --name sqlpreview --hostname sqlpreview -d -v sqlvolume:/var/opt/mssql --rm --name mssql mcr.microsoft.com/mssql/server:2022-preview-ubuntu-22.04

Setting the connection string in Secret Manager

$sa_password = "SA PASSWORD HERE"
dotnet user-secrets set "ConnectionStrings:GameStoreContext" "Server=localhost; Database=GameStore; User Id=YOUR_USERNAME; Password=YOUR_PASSWORD; TrustServerCertificate=True"

About

A game management system built with .NET 8 WebAPI and Blazor

Resources

License

Stars

Watchers

Forks

Packages

No packages published