From 1d32b070d26cf6c8d17b03dc06190c08d5c9444b Mon Sep 17 00:00:00 2001 From: Anton Mokhovikov Date: Wed, 16 Sep 2020 15:14:47 -0700 Subject: [PATCH] added cfn submit section to README (#576) --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6c967a21..a26fbee5 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,15 @@ To refresh auto-generated code, use the `generate` command. Usually, plugins try cfn generate ``` +### Command: submit + +To register a resource provider in your account, use the `submit` command. + +```bash +cfn submit +cfn submit --dry-run #prepares schema handler package without submitting for registration +``` + ### Command: test To run the contract tests, use the `test` command. @@ -40,7 +49,7 @@ To run the contract tests, use the `test` command. ```bash cfn test cfn test -- -k contract_delete_update #to run a single test -cfn test --tb=long # exhaustive, informative traceback formatting +cfn test --tb=long #exhaustive, informative traceback formatting cfn test --enforce-timeout 60 #set the RL handler timeout to 60 seconds and CUD handler timeout to 120 seconds. cfn test --enforce-timeout 60 -- -k contract_delete_update # combine args ```