Skip to content

YOUR-WORST-TACO/index.txt

Repository files navigation

Index.txt

A web based todo.txt list

Setup

Clone the repo

run these commands to get started

git clone https://github.com/YOUR-WORST-TACO/index.txt.git
cd index.txt
dotnet restore

Connection String

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"
  },
  ...
}

DB Migrations

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

Running

once everything has setup and god has been merciful, run the following to start the server

dotnet run

About

A web based todo.txt list

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published