docs: update quick-start

This commit is contained in:
2025-11-15 21:52:21 +08:00
parent 22e9266ce0
commit 00dfe1db93
2 changed files with 20 additions and 1 deletions

View File

@@ -74,8 +74,19 @@ If you don't want to use Kotlin DSL entirely, you can also migrate only `setting
```kotlin
gropify {
// Enable Gropify, setting it to `false` will disable all features
// Enable Gropify, setting it to `false` will disable all features.
isEnabled = true
// Whether to enable debug mode.
//
// You can help us identify the problem by enabling this option
// to print more debugging information in the logs.
//
// - Note: THIS IS ONLY FOR DEBUGGING!
// The debug log will contain your local environment,
// which may contain sensitive information.
// Please be sure to protect this information.
debugMode = false
}
```

View File

@@ -76,6 +76,14 @@ plugins {
gropify {
// 启用 Gropify设置为 `false` 将禁用所有功能
isEnabled = true
// 是否启用调试模式
//
// 你可以通过启用此选项在日志中打印更多调试信息帮助我们定位问题
//
// - 注意: 此功能仅用于调试!
// 调试日志将包含你的本地环境,其中可能包含敏感信息,请务必保护好这些信息
debugMode = false
}
```