Front End Rework & Deployment Cleanup

- Restructured references to service projects instead of ASP.NET Core web projects
 - Terminal.Gui front end for easy track management from the shell
This commit is contained in:
daniel-c-harvey
2025-09-07 12:58:43 -04:00
parent b16bcfc6cd
commit 69c8fcfe3c
8 changed files with 1098 additions and 42 deletions
+8
View File
@@ -0,0 +1,8 @@
namespace DeepDrftCli.Models
{
public class CliSettings
{
public string ConnectionString { get; set; } = string.Empty;
public string VaultPath { get; set; } = string.Empty;
}
}