How to deploy stage from client directly ? #13578
-
Hello, I have a CDK app with a Pipelines stack that works well for staging and production environments (it creates a CodePipeline triggered by GitHub). But us developers also deploy the application stacks directly from our computers, using Is there anyway I can do that: const app = new cdk.App();
new PipelinesStack(app, 'PipelinesStack', {});
new MyApplicationStage(app, 'MyApplicationStage'); and then cdk deploy PipelinesStack if I want to deploy the pipelines for staging and production cdk deploy MyApplicationStage if I'm working on my app and I just want to update my development backend Currently, I have the error |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi @maximelebastard, yes, we are aware of this usability problem. We're tracking it here: #8676. Thanks, |
Beta Was this translation helpful? Give feedback.
-
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
Hi @maximelebastard,
yes, we are aware of this usability problem. We're tracking it here: #8676.
Thanks,
Adam