I have an open-source repository (https://github.com/StaytunedLLP/dagger-ts-monorepo) demonstrating a Dagger monorepo with TypeScript. It contains a frontend module, a backend module, and a shared module orchestrated in a DAG (directed acyclic graph) manner. Currently, running the following commands takes 3-5 minutes each time due to slow initialization of the module:
# dagger-ts-monorepo
## Frontend module
dagger call run-node --source=../
## Backend module
dagger call run-node --source=../
## Shared module
dagger call run-node
How can I improve the performance and reduce this initialization time?
GitHub
Contribute to StaytunedLLP/dagger-ts-monorepo development by creating an account on GitHub.