compose icon indicating copy to clipboard operation
compose copied to clipboard

Orchestrate Serverless Framework in monorepos

Results 39 compose issues
Sort by recently updated
recently updated
newest added

**Problem** When deploying a set of services, a significant improvement to deployment speed is to package all the services prior to deployment. With a single serverless stack this happens by...

RFC

I've got a monorepo with 6 stacks; for ease of labelling let's call them A-F. In this scenario, consider the following dependency layout: - B-F all depend on A -...

enhancement

**Note: this issue requires #27 first** I wanted a place to discuss the idea of accelerating `sls deploy` (when there's "nothing to deploy") thanks to state. This is more long...

Here's a feature request I had: ```bash # Deploy "foo" serverless-compose foo:deploy # Deploy "foo" and all the services that depend on it serverless-compose foo:deploy --with-dependents ``` In the example...

RFC

When a service is waiting for another service to be deployed, it only currently displays "waiting" ![image](https://user-images.githubusercontent.com/29537204/160164352-98fc8acc-8df5-43fc-a455-ed788922e5ba.png) Maybe it would be interesting if we could display which services are actually...

**Problem** In monorepo services often use the same parameters. Right now the solution to share parameters is to create a separate file and read params with `${file()}` in each stack....

RFC

**Problem** As part of the development environment, I have stacks named `mock-api`, `mock-something`, etc. I want to deploy them only on dev environments, not production. Right now I'm deploying my...

RFC

**Problem** When running commands across all components, for example `deploy`, some of them might error out. **Scenarios** 1. Assuming `deploy` command, some of the components have been successfully deployed, but...

RFC

Currently, state is stored locally in `.serverless/`. It is designed so that it doesn't have to be shared (a new coworker running `deploy` on their machine will resolve the state/outputs...