We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This look promising. I was just about to add question to the forum about how to organize multiple services any you have the tool :)
On thing I don't see is dependencies or run order to deploy B you first have to deploy A. eg to deploy API you need to deploy the cognito first.
This can be done with specifying the service order in the main serverless.yml file:
service: main custom: deployorder: - cognito - api :
or dependencies in the specific serverless.yml files:
service: api custom: dependencies: - cognito :
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This look promising. I was just about to add question to the forum about how to organize multiple services any you have the tool :)
On thing I don't see is dependencies or run order to deploy B you first have to deploy A.
eg to deploy API you need to deploy the cognito first.
This can be done with specifying the service order in the main serverless.yml file:
or dependencies in the specific serverless.yml files:
The text was updated successfully, but these errors were encountered: