Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 24 days 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 (7 months ago)
- Default Branch: main
- Last Pushed: 2024-08-12T08:34:37.000Z (3 months ago)
- Last Synced: 2024-08-12T09:56:09.691Z (3 months ago)
- Language: Rust
- Size: 19.5 KB
- Stars: 1
- 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.