← スキル一覧に戻る
name: local-dev-serve-troubleshooting
description: Use this to run and debug the UI + server locally (Vite dev server,

local-dev-serve-troubleshooting
by localtaskrepo
The local task repo main repo used to build the binaries
⭐ 1🍴 0📅 2026年1月24日
SKILL.md
name: local-dev-serve-troubleshooting
description: Use this to run and debug the UI + server locally (Vite dev server, lotar serve, ports, SSE).
Common local dev setups
UI fast loop (Vite dev server)
-
Start UI:
npm run dev
-
In another terminal, start the Rust server:
cargo run -- serve --port 8080
Notes:
lotar serveport must be set with--port(the short-pis reserved for the global--projectflag).- Correct:
lotar serve --port 9000 - Also accepted:
lotar serve 9000(positional port; kept for backward compatibility) - Incorrect (sets project, not port):
lotar serve -p 9000 - See:
docs/help/serve.md
- Correct:
Production-like UI (embedded/static bundle)
- Build web assets:
npm run build:web
- Build the binary:
cargo build --release
- Run:
./target/release/lotar serve --port 8080
Debugging tips
- If the UI isn’t updating, confirm SSE is connected (
GET /api/events). Seedocs/help/sse.md. - If you’re working on REST handlers, use
docs/help/api-quick-reference.mdand keepdocs/openapi.jsonin sync for contract changes. - When chasing server behavior, enable logs:
RUST_LOG=debug cargo run -- serve --port 8080
Safety
- Treat
.env*and local config as sensitive; don’t paste secrets/PII into logs/issues.
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です