Final rebrand: rename remaining Rust source file to complete the gsd → forge transition. All parser references already use forge_parser after earlier commits. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
37 lines
1.2 KiB
Markdown
37 lines
1.2 KiB
Markdown
# Web Interface
|
|
|
|
SF includes a browser-based interface for project management and real-time progress monitoring.
|
|
|
|
## Quick Start
|
|
|
|
```bash
|
|
sf --web
|
|
```
|
|
|
|
This starts a local web server and opens the dashboard in your default browser.
|
|
|
|
## CLI Flags
|
|
|
|
```bash
|
|
sf --web --host 0.0.0.0 --port 8080 --allowed-origins "https://example.com"
|
|
```
|
|
|
|
| Flag | Default | Description |
|
|
|------|---------|-------------|
|
|
| `--host` | `localhost` | Bind address |
|
|
| `--port` | `3000` | Port |
|
|
| `--allowed-origins` | (none) | Comma-separated CORS origins |
|
|
|
|
## Features
|
|
|
|
- **Project management** — view milestones, slices, and tasks in a visual dashboard
|
|
- **Real-time progress** — live updates as auto mode executes
|
|
- **Multi-project support** — manage multiple projects from one browser tab via `?project=` URL parameter
|
|
- **Change project root** — switch directories from the web UI without restarting
|
|
- **Onboarding flow** — API key setup and provider configuration in the browser
|
|
- **Model selection** — switch models and providers from the web UI
|
|
|
|
## Platform Notes
|
|
|
|
- **macOS/Linux** — Full support
|
|
- **Windows** — Web build is skipped due to Next.js compatibility issues; CLI remains fully functional
|