A web based todo.txt list
run these commands to get started
git clone https://github.com/YOUR-WORST-TACO/index.txt.git
cd index.txt
dotnet restore
change Server, User Id, Password and Database to match your current setup. Note by default we are using MariaDB.
// appsettings.json
{
"ConnectionStrings": {
"DefaultConnection": "Server=localhost; User Id=root;Password=Password123;Database=indexTxtDb"
},
...
}
run the following commands to perform a migration to setup the tables for our database
dotnet ef migrations add InitialDbSetup
and then apply the migration
dotnet ef database update
once everything has setup and god has been merciful, run the following to start the server
dotnet run