File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,13 @@ helm install amazee-ai . -n amazee-ai --create-namespace \
111
111
#### 4. Local deployment with kind
112
112
``` bash
113
113
kind create cluster --name amazee-ai-local
114
+ # Pull the charts etc, and set the backend URL to localhost
115
+ helm install amazee-ai oci://ghcr.io/amazeeio/amazee.ai/amazee-ai --namespace amazee-ai --create-namespace --set frontend.apiUrl=" http://localhost:8800"
116
+ # Wait for all pods to initialise fully, then forward ports
117
+ k port-forward deployment/amazee-ai-frontend 3000:3000 -n amazee-ai
118
+ k port-forward deployment/amazee-ai-cbackend 8800:8800 -n amazee-ai
114
119
```
120
+ The system should now be accessable at http://localhost:3000
115
121
116
122
## Configuration
117
123
You can’t perform that action at this time.
0 commit comments