/HabitTracker

Project for coding with callie workshop

Primary LanguageHTML

Habit Tracker ToDo App with Blazor

This is a simple ToDo application built using Blazor Server, SQL Server Express, and Entity Framework. It allows users to create, view, update, and delete tasks in a ToDo list.

Prerequisites

Getting Started

  1. Clone this repository to your local machine:

    git clone <repository_url>
    
  2. Open the appsettings.json file in the ToDoApp project and update the connection string to point to your SQL Server Express instance:

    "ConnectionStrings": {
     "DefaultConnection": "Server=<ServerName>;Database=ToDoAppDb;Trusted_Connection=True;"
     }
    
  3. Build the solution and apply database migrations to create the database.