Deployment Walkthrough
Useful Links:
web server used in walkthrough:
Other web servers:
Other cloud providers:
GitHub repo used in demo (authentication branch):
dotnet install
sudo apt update && \ sudo apt install -y dotnet-sdk-6.0dotnet ef tool install
dotnet tool install --global dotnet-ef --version 6.0Create MySQL User:
CREATE USER 'john'@'localhost' IDENTIFIED BY 'password';Permissions:
GRANT ALL PRIVILEGES ON *.* TO 'john'@'localhost' WITH GRANT OPTION;Flush Privileges:
FLUSH PRIVILEGES;Any additional questions please feel free to email me: john@launchcode.org