Skip to content

Commit 03a57ef

Browse files
authored
Enhance README with AWS CLI prerequisites and deployment update (#23)
Updated deployment command to use 'npm run cdk:deploy'. Added prerequisite for AWS CLI installation and configuration.
1 parent 295cea8 commit 03a57ef

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,16 @@ As these frameworks evolve, we may consolidate to a single language for simplici
2020

2121
## Quick Start
2222

23+
Prerequisite: [install](https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html) and [configure](https://docs.aws.amazon.com/cli/latest/userguide/getting-started-quickstart.html) the AWS CLI
24+
2325
```bash
2426
# Test locally
2527
cd agent && source .venv/bin/activate && python src/agentcore_app.py
26-
2728
# Test in another terminal
2829
curl -X POST http://localhost:8080/invocations -H "Content-Type: application/json" -d '{"prompt": "What is 42 * 137?"}'
2930

3031
# Deploy to AWS
31-
cd cdk && npm install && npm run build && cdk deploy
32+
cd cdk && npm install && npm run build && npm run cdk:deploy
3233
```
3334

3435
**Ready to build?** Replace the example agent code with your own and deploy to AWS in under 10 minutes. ⚡️

0 commit comments

Comments
 (0)