You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's no first-class overload or different method to support running python apps where a module is the entrypoint and figuring out how to invoke the overloads that are there such that a module is used as the entrypoint is confusing due to the parameter counts and names. When combined with the previous point, this is what is required to run a Python app using a module as the entrypoint:
// You need to pass "-m" as the value for the 'scriptPath' parameter:
builder.AddPythonApp("python-app-module","../PythonApp", scriptPath:"-m",["module-name","moduleArg1"]);
The text was updated successfully, but these errors were encountered:
We have someone looking to run one of our Python services using Aspire and this is the current blocker. They are going to investigate if they can create an extension to support uv integration which would also resolve it as that is our primary path right now outside of Aspire.
There's no first-class overload or different method to support running python apps where a module is the entrypoint and figuring out how to invoke the overloads that are there such that a module is used as the entrypoint is confusing due to the parameter counts and names. When combined with the previous point, this is what is required to run a Python app using a module as the entrypoint:
The text was updated successfully, but these errors were encountered: