This commit is contained in:
2025-04-17 04:52:48 +08:00
commit 9985b73dc1
3708 changed files with 2387532 additions and 0 deletions

View File

@ -0,0 +1,25 @@
## Config
There are two ways to create a custom config.
1. You can create a config.json file in this directory.
The config.json file will override any keys in the [default.json](../src/studiolibrary/config/default.json) file
and will be ignored by git.
2. The other way is to create an environment variable with the name
STUDIO_LIBRARY_CONFIG_PATH. The value of this variable should be the
full path to your config.json file.
The config uses the json file type with basic support for comments using "//".
##### Example:
```javascript
// config.json
{
// The maximum walking depth from the root directory
"recursiveSearchDepth": 4
}
```