Skip to content

Commit d61e5cc

Browse files
committed
docs: consolidate README translations to en/ja/ru/zh-Hans/zh-Hant; sync structure and links
1 parent 9af83c5 commit d61e5cc

13 files changed

Lines changed: 371 additions & 829 deletions

README.de.md

Lines changed: 0 additions & 101 deletions
This file was deleted.

README.es.md

Lines changed: 0 additions & 101 deletions
This file was deleted.

README.fr.md

Lines changed: 0 additions & 101 deletions
This file was deleted.

README.ja.md

Lines changed: 49 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,14 @@
77
🚧早期段階のプロジェクトで活発に開発中 — まだ本番環境の準備はできていません。
88
⭐ スターをつけてフォローしてください
99

10-
[![ステータス](https://img.shields.io/badge/status-designing-blue?style=flat-square)](https://github.com/)
11-
[![言語](https://img.shields.io/badge/language-Rust-E57324?style=flat-square&logo=rust&logoColor=white)](https://www.rust-lang.org/)
12-
[![由来](https://img.shields.io/badge/origin-Claude_Code_TS-8A2BE2?style=flat-square)](https://docs.anthropic.com/en/docs/claude-code)
13-
[![ライセンス](https://img.shields.io/badge/license-MIT-green?style=flat-square)](./LICENSE)
14-
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen?style=flat-square)](https://github.com/)
10+
[![Stars](https://img.shields.io/github/stars/7df-lab/devo?style=flat-square)](https://github.com/7df-lab/devo/stargazers)
11+
[![Language](https://img.shields.io/badge/language-Rust-E57324?style=flat-square&logo=rust&logoColor=white)](https://www.rust-lang.org/)
12+
[![License](https://img.shields.io/badge/license-MIT-green?style=flat-square)](./LICENSE)
13+
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen?style=flat-square)](https://github.com/7df-lab/devo/pulls)
14+
[![CI](https://img.shields.io/github/actions/workflow/status/7df-lab/devo/ci.yml?branch=main&style=flat-square)](https://github.com/7df-lab/devo/actions)
15+
[![Release](https://img.shields.io/github/v/release/7df-lab/devo?style=flat-square)](https://github.com/7df-lab/devo/releases)
1516

16-
[English](./README.md) | [简体中文](./README.zh-CN.md) | [繁體中文](./README.zh-TW.md) | [日本語](./README.ja.md) | [한국어](./README.ko.md) | [Español](./README.es.md) | [Français](./README.fr.md) | [Português do Brasil](./README.pt-BR.md) | [Deutsch](./README.de.md) | [Русский](./README.ru.md) | [Türkçe](./README.tr.md)
17-
18-
<img
19-
src="./docs/assets/demo_20260421.gif"
20-
alt="プロジェクト概要"
21-
width="100%"
22-
style="border-radius: 8px; box-shadow: 0 15px 40px rgba(0,0,0,0.25);object-fit:cover;"
23-
/>
17+
[English](./README.md) | [简体中文](./README.zh-Hans.md) | [繁體中文](./README.zh-Hant.md) | [日本語](./README.ja.md) | [Русский](./README.ru.md)
2418

2519
</div>
2620

@@ -69,6 +63,48 @@ cargo build --release
6963
> [!TIP]
7064
> Rust がインストールされていることを確認してください。1.75+ を推奨します(https://rustup.rs/ から)。
7165
66+
## ⚙️ 設定
67+
68+
Devo は TOML ファイルから設定を読み込み、優先度の高いソースが低いものを上書きします:
69+
70+
1. ビルトインデフォルト(バイナリにコンパイル)
71+
2. `DEVO_HOME/config.toml` — ユーザーレベル設定(デフォルト: macOS/linux では `~/.devo/config.toml`、Windows では `C:\Users\yourname\.devo\config.toml`
72+
3. `<workspace>/.devo/config.toml` — プロジェクトレベル設定
73+
4. CLI フラグ — コマンドラインでの上書き
74+
75+
両方の設定ファイルはオプションです。最小限の設定ファイルには、devo がどのモデルを使用するかを知らせる provider セクションのみが必要です。`devo onboard` を実行すると、インタラクティブなセットアップでこれが書き込まれます。
76+
77+
### 最小設定例
78+
79+
```toml
80+
# ~/.devo/config.toml
81+
model = "deepseek-v4-flash"
82+
model_provider = "api.deepseek.com"
83+
model_thinking_selection = "high"
84+
85+
[model_providers."api.deepseek.com"]
86+
name = "api.deepseek.com"
87+
api_key = "sk-..."
88+
base_url = "https://api.deepseek.com"
89+
wire_api = "openai_chat_completions"
90+
91+
[[model_providers."api.deepseek.com".models]]
92+
model = "deepseek-v4-pro"
93+
94+
[[model_providers."api.deepseek.com".models]]
95+
model = "deepseek-v4-flash"
96+
```
97+
98+
## Star us
99+
100+
<a href="https://www.star-history.com/?repos=7df-lab%2Fdevo&type=date&legend=top-left">
101+
<picture>
102+
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/chart?repos=7df-lab/devo&type=date&theme=dark&legend=top-left" />
103+
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/chart?repos=7df-lab/devo&type=date&legend=top-left" />
104+
<img alt="Star History Chart" src="https://api.star-history.com/chart?repos=7df-lab/devo&type=date&legend=top-left" />
105+
</picture>
106+
</a>
107+
72108
## よくある質問
73109

74110
### これは Claude Code と何が違いますか?

0 commit comments

Comments
 (0)