Skip to content
DocsTry Aspire
DocsTry

TurborepoAppResource Constructors

ClassConstructors1 member
A resource that represents a Node.js application running under Turborepo.
Constructor(string, string, string, string)Section titled Constructor(string, string, string, string)
A resource that represents a Node.js application running under Turborepo.
public class TurborepoAppResource
{
public TurborepoAppResource(
string name,
string workingDirectory,
string filter,
string command = "turbo")
{
// ...
}
}
namestringThe name of the resource.
workingDirectorystringThe working directory of the application.
filterstringThe Turborepo filter to use (used in 'turbo run dev --filter={filter}').
commandstringoptionalThe command to run (default is 'turbo').