Open sguthals opened 3 years ago
Trying out building a simple app with .NET, thinking of trying the Blazor tutorial.
Steps:
[ ] Install dotnet
wget https://packages.microsoft.com/config/ubuntu/20.10/packages-microsoft-prod.deb -O packages-microsoft-prod.deb sudo dpkg -i packages-microsoft-prod.deb
sudo apt-get update; \ sudo apt-get install -y apt-transport-https && \ sudo apt-get update && \ sudo apt-get install -y dotnet-sdk-5.0
sudo apt-get update; \ sudo apt-get install -y apt-transport-https && \ sudo apt-get update && \ sudo apt-get install -y aspnetcore-runtime-5.0
- Test with `dotnet`
dotnet new blazorserver -o BlazorApp --no-https
cd BlazorApp
dotnet watch run
@teleplayer123 - I've started here and I got a key from [IQ Air[(https://api-docs.iqair.com/).
I'm working to figure out how to:
The tutorial actually has a weather app in it...so I feel like we can do this!
Trying out building a simple app with .NET, thinking of trying the Blazor tutorial.
Steps:
[ ] Install dotnet
sudo apt-get update; \ sudo apt-get install -y apt-transport-https && \ sudo apt-get update && \ sudo apt-get install -y dotnet-sdk-5.0
sudo apt-get update; \ sudo apt-get install -y apt-transport-https && \ sudo apt-get update && \ sudo apt-get install -y aspnetcore-runtime-5.0
dotnet new blazorserver -o BlazorApp --no-https
cd BlazorApp
dotnet watch run
Open your browser to http://localhost:5000 to see it running