@@ -27,7 +27,7 @@ brew install crc
2727
2828### 2. Start Development Environment
2929``` bash
30- make dev-start
30+ make local-up
3131```
3232* First run: ~ 5-10 minutes. Subsequent runs: ~ 2-3 minutes.*
3333
@@ -38,37 +38,37 @@ make dev-start
3838
3939### 4. Verify Everything Works
4040``` bash
41- make dev -test # Should show 11/12 tests passing
41+ make local -test
4242```
4343
4444## Hot-Reloading Development
4545
4646``` bash
47- # Terminal 1: Start with development mode
48- DEV_MODE=true make dev-start
47+ # Start local environment
48+ make local-up
4949
50- # Terminal 2: Enable file sync
51- make dev-sync
50+ # Rebuild components after changes
51+ make local-rebuild
5252```
5353
5454## Essential Commands
5555
5656``` bash
5757# Day-to-day workflow
58- make dev-start # Start environment
59- make dev -test # Run tests
60- make dev-stop # Stop (keep CRC running)
61- make dev -clean # Full cleanup
58+ make local-up # Start environment
59+ make local -test # Run tests
60+ make local-down # Stop (keep cluster running)
61+ make local -clean # Full cleanup
6262
6363# Logs
64- make dev -logs # All logs
65- make dev -logs-backend # Backend only
66- make dev -logs-frontend # Frontend only
67- make dev -logs-operator # Operator only
68-
69- # Operator management
70- make dev-restart-operator # Restart operator
71- make dev-operator-status # Check operator status
64+ make local -logs # All logs
65+ make local -logs-backend # Backend only
66+ make local -logs-frontend # Frontend only
67+ make local -logs-operator # Operator only
68+
69+ # Status and troubleshooting
70+ make local-status # Show status of local deployment
71+ make local-troubleshoot # Show troubleshooting information
7272```
7373
7474## Installation Details
@@ -115,7 +115,7 @@ sudo chmod +x /usr/local/bin/crc
1151153 . Download pull secret
1161164 . Save to ` ~/.crc/pull-secret.json `
117117
118- The ` make dev-start ` script will automatically use this pull secret.
118+ The ` make local-up ` script will automatically use this pull secret.
119119
120120## Features
121121
@@ -128,7 +128,7 @@ The `make dev-start` script will automatically use this pull secret.
128128
129129### ✅ Development Workflow
130130- Hot-reloading with ` DEV_MODE=true `
131- - File sync with ` make dev-sync `
131+ - Rebuild with ` make local-rebuild `
132132- Quick operator restarts
133133- Component-specific log viewing
134134
@@ -165,7 +165,7 @@ crc logs
165165
166166# Reset if needed
167167crc delete
168- make dev-start
168+ make local-up
169169```
170170
171171### Pods Not Starting
@@ -216,29 +216,25 @@ crc config set memory 16384 # 16GB
216216crc config set disk-size 100 # 100GB
217217
218218# Then start
219- make dev-start
219+ make local-up
220220```
221221
222222### Custom Registry
223223
224224``` bash
225225# Use external registry instead of internal
226226export CONTAINER_REGISTRY=quay.io/your-username
227- make dev-start
227+ make local-up
228228```
229229
230230## Cleanup
231231
232232``` bash
233- # Stop but keep CRC running
234- make dev-stop
233+ # Stop but keep cluster running
234+ make local-down
235235
236- # Stop and shutdown CRC
237- make dev-stop-cluster
238-
239- # Full cleanup (deletes CRC cluster)
240- make dev-clean
241- crc delete
236+ # Full cleanup (deletes cluster)
237+ make local-clean
242238```
243239
244240## See Also
0 commit comments