Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Readme-Usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ a365 setup # Creates agent blueprint and registers messaging endpoint
Choose based on your application type:

- **.NET Projects:** .NET 8.0 SDK or later
- **Node.js Projects:** Node.js (18+ recommended) and npm
- **Node.js Projects:** Node.js (20+ recommended) and npm
- **Python Projects:** Python 3.11+ and pip

The CLI will validate that required tools are installed before deployment.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ private static string GetRuntimeForPlatform(Models.ProjectPlatform platform)
return platform switch
{
Models.ProjectPlatform.Python => "PYTHON:3.11",
Models.ProjectPlatform.NodeJs => "NODE:18-lts",
Models.ProjectPlatform.NodeJs => "NODE:20-lts",
Models.ProjectPlatform.DotNet => "DOTNETCORE:8.0",
_ => "DOTNETCORE:8.0" // Default fallback
};
Expand Down