Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update setup-cloud9.md #44

Merged
merged 1 commit into from
Feb 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/setup-cloud9.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,15 @@ After arranging your environment windows, you'll want to install and update some
```bash
sudo pip install awscli --upgrade
sudo yum install -y jq
aws configure set default.region us-east-2
aws configure set default.region us-east-1
```

Install NodeJS v18 and set as the default version

```bash
nvm install 16
nvm use 16
nvm alias default 16
nvm install 18
nvm use 18
nvm alias default 18
```

The AWS CDK includes the CDK Toolkit (also called the CLI), a command line tool for working with your AWS CDK apps and stacks. Install the CDK toolkit
Expand Down