25 lines
No EOL
540 B
Markdown
25 lines
No EOL
540 B
Markdown
# Setup Instructions
|
|
|
|
Ensure you have [Homebrew](https://brew.sh/) installed on your machine.
|
|
|
|
`/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"`
|
|
|
|
Ensure you have the dependencies installed:
|
|
|
|
`brew install terraform`
|
|
|
|
Run the following commands to initialize and apply the Terraform configuration:
|
|
|
|
```bash
|
|
terraform init
|
|
terraform plan
|
|
terraform apply
|
|
```
|
|
|
|
# Development Environment Setup
|
|
|
|
`brew install minikube`
|
|
|
|
```bash
|
|
minikube start --driver=podman --container-runtime=cri-o
|
|
``` |