========================================================================================================

  Your CDKTN TypeScript project is ready!

  cat help                Print this message

  Compile:
    npm run get           Import/update Terraform providers and modules (you should check-in this directory)
    npm run compile       Compile typescript code to javascript (or "npm run watch")
    npm run watch         Watch for changes and compile typescript in the background
    npm run build         Compile typescript

  Synthesize:
    cdktn synth [stack]   Synthesize Terraform resources from stacks to cdktf.out/ (ready for 'terraform apply')

  Diff:
    cdktn diff [stack]    Perform a diff (terraform plan) for the given stack

  Deploy:
    cdktn deploy [stack]  Deploy the given stack

  Destroy:
    cdktn destroy [stack] Destroy the stack

  Test:
    npm run test        Runs unit tests (edit __tests__/main-test.ts to add your own tests)
    npm run test:watch  Watches the tests and reruns them on change

  Upgrades:
    npm run upgrade        Upgrade cdktn modules to latest version
    npm run upgrade:next   Upgrade cdktn modules to latest "@next" version (last commit)

 Use Providers:

  You can add prebuilt providers (if available) or locally generated ones using the add command:
  
  cdktn provider add "aws@~>3.0" null kreuzwerker/docker

  You can find all prebuilt providers on npm: https://www.npmjs.com/search?q=keywords:cdktn
  You can also install these providers directly through npm:

  npm install @cdktn/provider-aws
  npm install @cdktn/provider-google
  npm install @cdktn/provider-azurerm
  npm install @cdktn/provider-docker
  npm install @cdktn/provider-github
  npm install @cdktn/provider-null

  You can also build any module or provider locally. Learn more https://cdktn.io/docs/concepts/providers

========================================================================================================
