Skip to content

Commit f7474ab

Browse files
Veraticusclaude
andcommitted
fix: update dev shell help text and improve dev mode warning
- Update flake.nix shellHook to reference ./update-nix-deps.sh - Change dev mode log from INFO to WARNING level for visibility Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent f15426b commit f7474ab

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@
103103
echo "Calendar MCP development shell"
104104
echo " dotnet version: $(dotnet --version)"
105105
echo ""
106-
echo "To regenerate deps.json:"
107-
echo " cd src && dotnet restore && nuget-to-json . > ../deps.json"
106+
echo "To regenerate NuGet dependency files:"
107+
echo " ./update-nix-deps.sh"
108108
'';
109109
};
110110
}

src/CalendarMcp.HttpServer/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public static void Main(string[] args)
8686
}
8787
else
8888
{
89-
Log.Information("OAuth authentication disabled - running in dev mode");
89+
Log.Warning("OAuth authentication disabled - running in DEVELOPMENT MODE (no authentication)");
9090
}
9191

9292
// Add MCP server with HTTP transport

0 commit comments

Comments
 (0)