We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90e4b9d commit c1e497dCopy full SHA for c1e497d
templates/cli/lib/commands/push.js.twig
@@ -1337,6 +1337,16 @@ const push = new Command("push")
1337
.description(commandDescriptions['push'])
1338
.action(actionRunner(pushResources));
1339
1340
+push
1341
+ .command("all")
1342
+ .description("Push all resource.")
1343
+ .action(actionRunner(pushResources));
1344
+
1345
1346
+ .command("project")
1347
+ .description("Push project name, services and auth settings")
1348
+ .action(actionRunner(pushProject));
1349
1350
push
1351
.command("function")
1352
.alias("functions")
0 commit comments