dotnet restore
dotnet build
Download docker image for sql server
mcr.microsoft.com/mssql/server:2017-latest
Run
sudo docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=<YourStrong@Passw0rd>" \
-p 1433:1433 --name sql1 \
-d mcr.microsoft.com/mssql/server:2017-latest
Update connectionString into
appsetting.json
For update exist image
docker pull mcr.microsoft.com/mssql/server:2017-latest
Install dotnet ef
dotnet tool install --global dotnet-ef
Execute database
# ApplicationDbContext
# PersistedGrantDbContext
# ConfigurationDbContext
dotnet ef database udpate -c <Context>
- Register new account in sendGrid
- Create new Api Key
- Update into
appsetting.json
dotnet run