Skip to content
Closed
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
Binary file added .assets/plan.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,3 @@ backends/charts/advanced-backend/env-configmap.yaml
extras/openmemory-mcp/data/*
.env.backup.*

backends/advanced/nginx.conf
backends/advanced/Caddyfile

958 changes: 896 additions & 62 deletions CLAUDE.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions Docs/init-system.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

Friend-Lite uses a unified initialization system with clean separation of concerns:

- **Configuration** (`wizard.py`) - Set up service configurations, API keys, and .env files
- **Configuration** (`init.py`) - Set up service configurations, API keys, and .env files
- **Service Management** (`services.py`) - Start, stop, and manage running services

The root orchestrator handles service selection and delegates configuration to individual service scripts. In general, setup scripts only configure and do not start services automatically. Exceptions: `extras/asr-services` and `extras/openmemory-mcp` are startup scripts. This prevents unnecessary resource usage and gives you control over when services actually run.
Expand All @@ -22,7 +22,7 @@ The root orchestrator handles service selection and delegates configuration to i
## Architecture

### Root Orchestrator
- **Location**: `/wizard.py`
- **Location**: `/init.py`
- **Purpose**: Service selection and delegation only
- **Does NOT**: Handle service-specific configuration or duplicate setup logic

Expand All @@ -39,7 +39,7 @@ Set up multiple services together with automatic URL coordination:

```bash
# From project root
uv run --with-requirements setup-requirements.txt python wizard.py
uv run --with-requirements setup-requirements.txt python init.py
```

The orchestrator will:
Expand Down
Loading
Loading