EntrypointType
Enum net10.0
Specifies the type of entrypoint for a Python application.
namespace Aspire.Hosting.Python;
public sealed 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").