/JayTracker

TimeTracking Web Application

Primary LanguageHTML

README

This README would normally document whatever steps are necessary to get your application up and running.

Quick Links

What is this repository for?

How do I get set up?

  • Summary of set up
  • Configuration
  • Dependencies
  • Database configuration
  • How to run tests
  • Deployment instructions

Contribution guidelines

  • Writing tests
  • Code review
  • Other guidelines

Who do I talk to?

  • Repo owner or admin
  • Other community or team contact

DotNet CLI Commands

  • dotnet run --runs a project
  • dotnet clean --cleans a project
  • dotnet build --builds a project (there are options for verbosity like -v d[etailed])
  • dotnet watch run --runs a project while also listening for changes to files (can edit code while in a persistant run mode)

EF Migrations CLI Commands

  • dotnet ef migrations add {nameOfMigration}
  • dotnet ef database update

SQL Lite

helpful cli

  • dotnet add package Microsoft.Data.Sqlite

helpful links