A full stack ASP.NET and Angular application that displays country and city data for the user.
This applicaiton uses MySQL database. When installing this application, you will need to set up a connection to your database using the .NET secrets feature.
To set up the database connection, follow these steps:
- Initialize user secrets:
dotnet user-secrets init
- Set your database string:
dotnet user-secrets set "ConnectionStrings:DefaultConnection" "Server=your-server;Database=your-database;User=your-username;Password=your-password;"