https://github.com/dreamorosi/create-cdk-app-cli
A simple and opinionated CLI to create a new AWS CDK App in TypeScript
https://github.com/dreamorosi/create-cdk-app-cli
Last synced: 2 months ago
JSON representation
A simple and opinionated CLI to create a new AWS CDK App in TypeScript
- Host: GitHub
- URL: https://github.com/dreamorosi/create-cdk-app-cli
- Owner: dreamorosi
- License: mit
- Created: 2024-04-19T21:13:32.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-05T12:01:57.000Z (2 months ago)
- Last Synced: 2025-05-05T12:29:20.542Z (2 months ago)
- Language: Rust
- Size: 44.9 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Create CDK App CLI
A simple and opinionated CLI to create a new AWS CDK App in TypeScript.
## Usage
```bash
create-cdk-app --helpCreate a new CDK project scaffold 🚀
Usage: create-cdk-app [OPTIONS]
Arguments:
The name of the CDK project (i.e. my-cdk-project)Options:
-n, --no-install Optional flag to skip npm install
-h, --help Print help
-V, --version Print version
```## Installation
Clone the repository and run the following commands:
```bash
cargo build --release
cp target/release/create-cdk-app ~/.local/bin
```Note: Make sure `~/.local/bin` is in your PATH.