Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions components/README.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ CONTAINER_REGISTRY=$REGISTRY ./deploy.sh

### Rebuild Components
```bash
make local-rebuild # Rebuild and reload all components
make local-reload-backend # Rebuild and reload backend only
make local-reload-frontend # Rebuild and reload frontend only
make local-reload-operator # Rebuild and reload operator only
make kind-rebuild # Rebuild and reload all components
make kind-reload-backend # Rebuild and reload backend only
make kind-reload-frontend # Rebuild and reload frontend only
make kind-reload-operator # Rebuild and reload operator only
```

## Quick Deploy
Expand Down
4 changes: 2 additions & 2 deletions docs/internal/architecture/diagrams/component-structure.mmd
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ graph LR
end

subgraph "Development Commands"
LocalUp[make local-up<br/>🚀 Complete Stack]
LocalRebuild[make local-rebuild<br/>♻️ Rebuild & Reload]
LocalUp[make kind-up<br/>🚀 Complete Stack]
LocalRebuild[make kind-rebuild<br/>♻️ Rebuild & Reload]
Deploy[make deploy<br/>📦 Production]
BuildPush[make build-all push-all<br/>🏗️ Container Images]
end
Expand Down
4 changes: 2 additions & 2 deletions docs/internal/architecture/diagrams/deployment-stack.mmd
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ graph TD
subgraph "Local Development"
KIND[Kind]
CRC[OpenShift Local/CRC]
LocalUp[make local-up]
LocalRebuild[make local-rebuild<br/>♻️ Rebuild & Reload]
LocalUp[make kind-up]
LocalRebuild[make kind-rebuild<br/>♻️ Rebuild & Reload]
end

subgraph "Production"
Expand Down
4 changes: 2 additions & 2 deletions docs/internal/developer/README.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ make lint
make test

# Test locally
make local-up
make kind-up
```

### 4. Submit PR
Expand All @@ -119,7 +119,7 @@ make build-backend # Build backend only

### Local Development
```bash
make local-up # Start local environment
make kind-up # Start local environment
make local-status # Check status
make local-logs # View logs
make local-down # Stop environment
Expand Down
4 changes: 2 additions & 2 deletions docs/internal/developer/local-development/kind.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -374,8 +374,8 @@ lsof -i:8080 # Find what's using the port
**Fix:**
```bash
# Auto-detect and use native architecture
make local-clean
make local-up
make kind-down
make kind-up
```

**Diagnosis:** Run `make check-architecture` to verify native builds are enabled.
Expand Down
10 changes: 5 additions & 5 deletions tests/README.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ make local-test-dev

```bash
# Start environment
make local-up
make kind-up

# Wait for pods to be ready
sleep 30
Expand Down Expand Up @@ -216,7 +216,7 @@ make local-troubleshoot
#### "Backend not responding"
```bash
make local-logs-backend
make local-reload-backend
make kind-reload-backend
```

## Writing New Tests
Expand Down Expand Up @@ -309,7 +309,7 @@ When adding features to the local development environment:
Wait for pods to be ready before running tests:

```bash
make local-up
make kind-up
sleep 30
make local-test-dev
```
Expand Down Expand Up @@ -346,8 +346,8 @@ Run with verbose output:
- **Before every PR** - `make local-test-dev`
- **Weekly** - Full cleanup and restart
```bash
make local-clean
make local-up
make kind-down
make kind-up
make local-test-dev
```

Expand Down
Loading