EntrypointType
Enum net8.0
Specifies the type of entrypoint for a Python application.
namespace Aspire.Hosting.Python;
public enum EntrypointTypeEnum Members
Section titled Enum MembersExecutableA standalone executable from the virtual environment (e.g., "uvicorn", "flask", "pytest").
ScriptA Python script file to execute directly (e.g., "main.py", "app.py").
ModuleA Python module to run via python -m <module> (e.g., "flask", "uvicorn").