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
Say I have an app with 4 components but only want to run 2, I should be able to do the equivalent of spin up --component "foo" --component "bar"
Background
Spin unifies serverless application development. Developers can define distinct functions as components and group them all together into one fully-featured Spin application. Each of these components has unique requirements, such as access to a database or LLM. Not all of these requirements are always available to the developer or in production. For these reasons, developers should be able to run a subset of components of a Spin application.
Proposed DevX
# Run all components
spin up
# Run the `hello-rust` and `hello-go` components
spin up --component "hello-rust" --component "hello-go"
The text was updated successfully, but these errors were encountered:
Summary
Say I have an app with 4 components but only want to run 2, I should be able to do the equivalent of
spin up --component "foo" --component "bar"
Background
Spin unifies serverless application development. Developers can define distinct functions as components and group them all together into one fully-featured Spin application. Each of these components has unique requirements, such as access to a database or LLM. Not all of these requirements are always available to the developer or in production. For these reasons, developers should be able to run a subset of components of a Spin application.
Proposed DevX
The text was updated successfully, but these errors were encountered: