mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-11 20:05:25 +00:00
32 lines
No EOL
813 B
JSON
32 lines
No EOL
813 B
JSON
{
|
|
"$schema": "../schemas/v2/index.json",
|
|
"repos": [
|
|
{
|
|
"type": "local",
|
|
"path": "/path/to/local/repo"
|
|
},
|
|
// Relative paths are relative to the config file
|
|
{
|
|
"type": "local",
|
|
"path": "../../relative/path/to/local/repo"
|
|
},
|
|
// File watcher can be disabled (enabled by default)
|
|
{
|
|
"type": "local",
|
|
"path": "/path/to/local/repo",
|
|
"watch": false
|
|
},
|
|
// Exclude paths can be specified
|
|
{
|
|
"type": "local",
|
|
"path": "/path/to/local/repo",
|
|
"exclude": {
|
|
"paths": [
|
|
".git",
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
}
|
|
}
|
|
]
|
|
} |