Skip to content

Commit 1e6a504

Browse files
committed
Update installation guide
Add terraform and aws
1 parent 26197cf commit 1e6a504

1 file changed

Lines changed: 34 additions & 5 deletions

File tree

README.md

Lines changed: 34 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,45 @@ Choose one of the following options:
1919
- Better resource utilization on macOS
2020
- Installation guide: https://docs.orbstack.dev/install
2121

22+
### Install Terraform
23+
24+
**Installation Guide:** https://developer.hashicorp.com/terraform/install
25+
26+
**macOS (Homebrew):**
27+
```bash
28+
brew tap hashicorp/tap
29+
brew install hashicorp/tap/terraform
30+
```
31+
32+
**Alternative Installation Methods:**
33+
- Direct binary download from HashiCorp releases
34+
- Package managers (apt, yum, etc.) for Linux
35+
- Chocolatey for Windows
36+
37+
### Install AWS CLI
38+
39+
**Installation Guide:** https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html
40+
41+
**macOS:**
42+
```bash
43+
# Option 1: Homebrew
44+
brew install awscli
45+
46+
# Option 2: Official installer
47+
curl "https://awscli.amazonaws.com/AWSCLIV2.pkg" -o "AWSCLIV2.pkg"
48+
sudo installer -pkg AWSCLIV2.pkg -target /
49+
```
50+
2251
## Getting Started
2352

2453
### Prerequisites
2554

26-
**Install Required Tools**
55+
**Verify Required Tools Installation:**
2756
```bash
28-
# Verify installations
29-
terraform --version
30-
docker --version
31-
aws --version
57+
# Check all required tools are installed
58+
terraform --version # Should return v1.5+
59+
docker --version # Should return 20.10+
60+
aws --version # Should return aws-cli/2.0+
3261
```
3362

3463
**Install LocalStack**

0 commit comments

Comments
 (0)