You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
codeboost run --batch repositories.json --size 3 <boost>
53
+
codeboost run --batch repositories.json --size 3 <boost-name>
54
54
```
55
55
56
56
When running in batch mode, the `--size` option can be used to specify the number of repositories to process at once. The default is 1.
@@ -72,9 +72,15 @@ Example of a batch JSON file (_repositories.json_):
72
72
]
73
73
```
74
74
75
+
## Boosts
76
+
77
+
Boosts are stored by default in `~/.codeboost/boosts`, and examples can be found in the `examples` directory of the repository. [Read the docs](docs/boosts.md).
78
+
75
79
## Configuration
76
80
77
-
To use the `codeboost` CLI, create a file named `boost.config.js` in your current working directory or run `codeboost init` to create a default configuration file.
81
+
To use the `codeboost` CLI, create a file named `codeboost.config.js` in your current working directory or run `codeboost init` to create a default configuration file.
82
+
83
+
The default configuration file is stored in `~/.codeboost/codeboost.config.js`. This file assumes that you have an environment variable named `CODEBOOST_GITHUB_TOKEN` that contains a valid GitHub personal access token with the `repo` scope. You may edit this file to use a different token or to change the default storage paths.
78
84
79
85
This file should export a `default` configuration object with the following properties:
0 commit comments