Skip to content
Merged
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
2 changes: 1 addition & 1 deletion docs/kepler/developer/dev-docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ docker compose up -d
make test

# Local development
sudo ./bin/kepler --config hack/config.yaml
sudo ./bin/kepler --config.file hack/config.yaml
```

## 📚 Related Project Documentation
Expand Down
2 changes: 1 addition & 1 deletion docs/kepler/developer/dev-docs.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ docker compose up -d
make test

# 本地开发
sudo ./bin/kepler --config hack/config.yaml
sudo ./bin/kepler --config.file hack/config.yaml
```

## 📚 相关项目文档
Expand Down
4 changes: 2 additions & 2 deletions docs/kepler/installation/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ cd kepler
make build

# Run Kepler (requires sudo for hardware access)
sudo ./bin/kepler --config hack/config.yaml
sudo ./bin/kepler --config.file hack/config.yaml
```

#### Configuration
Expand All @@ -126,7 +126,7 @@ Kepler can be configured using YAML files or CLI flags. The default configuratio

```bash
# Run with custom configuration
sudo ./bin/kepler --config /path/to/your/config.yaml
sudo ./bin/kepler --config.file /path/to/your/config.yaml

# Run with CLI flags
sudo ./bin/kepler --log.level=debug --exporter.stdout
Expand Down
4 changes: 2 additions & 2 deletions docs/kepler/installation/guide.zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ cd kepler
make build

# 运行 Kepler(需要 sudo 权限访问硬件)
sudo ./bin/kepler --config hack/config.yaml
sudo ./bin/kepler --config.file hack/config.yaml
```

#### 配置
Expand All @@ -129,7 +129,7 @@ Kepler 可以使用 YAML 文件或 CLI 标志进行配置。默认配置在 `hac

```bash
# 使用自定义配置运行
sudo ./bin/kepler --config /path/to/your/config.yaml
sudo ./bin/kepler --config.file /path/to/your/config.yaml

# 使用 CLI 标志运行
sudo ./bin/kepler --log.level=debug --exporter.stdout
Expand Down
Loading