- MySQL Workbench is installed and running locally.
- .NET 8 SDK and ASP.NET Core runtime are set up.
Open MySQL Workbench and execute the provided init.sql file to create the necessary schema and seed the initial data.
Open the appsettings.json file and update the following section with your MySQL username, password, and database name:
{
"ConnectionStrings": {
"DefaultConnection": "server=localhost;user=your_username;password=your_password;database=game_db"
}
}