2017-01-15 17:59:32 +00:00
# Configuration
## Configuration Methods
Configuration is supported via any or all of the below:
- Configuration file
- Environment
- CLI
2017-01-18 18:55:03 +00:00
- `renovate.json` in target repository
- `renovate` field of `package.json` in target repository
2017-01-15 17:59:32 +00:00
The above are listed in reverse order of preference.
2017-01-18 18:55:03 +00:00
i.e. `package.json` settings will override `renovate.json` settings, CLI, which overrides env, which overrides the config file, which overrides defaults.
2017-01-15 17:59:32 +00:00
### Default Configuration
Default configuration can be found in [lib/config/default.js ](../lib/config/default.js )
### Configuration File
You can override default configuration using a configuration file, with default name `config.js` in the working directory. If you need an alternate location or name, set it in the environment variable `RENOVATE_CONFIG_FILE` .
Using a configuration file gives you very granular configuration options. For instance, you can override most settings at the global (file), repository, or package level. e.g. apply one set of labels for `backend/package.json` and a different set for `frontend/package.json` in the same repository.
```javascript
module.exports = {
2017-01-19 09:27:31 +00:00
labels: ['upgrade'],
2017-01-15 17:59:32 +00:00
depTypes: ['dependencies', 'devDependencies'],
repositories: [
{
repository: 'singapore/repo1',
packageFiles: [
'package.json',
{
fileName: 'frontend/package.json',
2017-01-19 09:27:31 +00:00
labels: ['upgrade', 'frontend']
2017-01-15 17:59:32 +00:00
},
],
},
{
repository: 'singapore/repo2',
depTypes: ['dependencies', 'devDependencies', 'optionalDependencies'],
labels: ['renovate'],
},
'singapore/repo3',
]
}
```
### CLI
```
2017-01-17 13:27:48 +00:00
$ node renovate --help
Usage: renovate [options] [repositories...]
Options:
2017-01-29 20:53:12 +00:00
-h, --help output usage information
--enabled [boolean] Enable or disable renovate
2017-01-30 06:37:43 +00:00
--onboarding [boolean] Require a Configuration PR first
2017-01-31 17:16:33 +00:00
--platform < string > Platform type of repository
2017-02-05 08:10:29 +00:00
--endpoint < string > Custom endpoint to use
2017-01-31 17:16:33 +00:00
--token < string > Repository Auth Token
2017-01-29 20:53:12 +00:00
--package-files < list > Package file paths
--dep-types < list > Dependency types
--ignore-deps < list > Dependencies to ignore
--ignore-future [boolean] Ignore versions tagged as "future"
--ignore-unstable [boolean] Ignore versions with unstable semver
--respect-latest [boolean] Ignore versions newer than npm "latest" version
--recreate-closed [boolean] Recreate PRs even if same ones were closed previously
--labels < list > Labels to add to Pull Request
--assignees < list > Assignees for Pull Request
2017-01-31 13:54:16 +00:00
--reviewers < list > Requested reviewers for Pull Requests
2017-01-29 20:53:12 +00:00
--log-level < string > Logging level
2017-01-17 13:27:48 +00:00
Examples:
$ renovate --token abc123 singapore/lint-condo
2017-01-20 13:03:18 +00:00
$ renovate --ignore-unstable=false --log-level verbose singapore/lint-condo
2017-01-17 13:27:48 +00:00
$ renovate singapore/lint-condo singapore/package-test
2017-01-15 17:59:32 +00:00
```
2017-01-18 18:55:03 +00:00
### renovate.json
If you add a `renovate.json` file to the root of your repository, you can use this to override default settings.
If you leave the `packageFiles` field empty then `renovate` will still auto-discover all `package.json` files in the repository.
2017-01-15 17:59:32 +00:00
### package.json
If you add configuration options to your `package.json` then these will override any other settings above.
Obviously, you can't set repository or package file location with this method.
```json
"renovate": {
"labels": [
"upgrade",
"bot"
]
}
```
## Configuration Options
2017-01-20 13:03:18 +00:00
| Name | Description | Type | Default value | Environment | CLI |
|------|-------------|------|---------------|-------------|-----|
| `enabled` | Enable or disable renovate | boolean | `true` | `RENOVATE_ENABLED` | `--enabled` |
2017-01-30 06:37:43 +00:00
| `onboarding` | Require a Configuration PR first | boolean | `true` | `RENOVATE_ONBOARDING` | `--onboarding` |
2017-01-31 17:16:33 +00:00
| `platform` | Platform type of repository | string | `"github"` | `RENOVATE_PLATFORM` | `--platform` |
2017-02-05 08:10:29 +00:00
| `endpoint` | Custom endpoint to use | string | `null` | `RENOVATE_ENDPOINT` | `--endpoint` |
2017-01-31 17:16:33 +00:00
| `token` | Repository Auth Token | string | `null` | `RENOVATE_TOKEN` | `--token` |
2017-01-20 13:03:18 +00:00
| `repositories` | GitHub repositories | list | `[]` | `RENOVATE_REPOSITORIES` | |
| `packageFiles` | Package file paths | list | `[]` | `RENOVATE_PACKAGE_FILES` | `--package-files` |
| `depTypes` | Dependency types | list | `["dependencies", "devDependencies", "optionalDependencies"]` | `RENOVATE_DEP_TYPES` | `--dep-types` |
| `ignoreDeps` | Dependencies to ignore | list | `[]` | `RENOVATE_IGNORE_DEPS` | `--ignore-deps` |
| `ignoreFuture` | Ignore versions tagged as "future" | boolean | `true` | `RENOVATE_IGNORE_FUTURE` | `--ignore-future` |
| `ignoreUnstable` | Ignore versions with unstable semver | boolean | `true` | `RENOVATE_IGNORE_UNSTABLE` | `--ignore-unstable` |
| `respectLatest` | Ignore versions newer than npm "latest" version | boolean | `true` | `RENOVATE_RESPECT_LATEST` | `--respect-latest` |
| `recreateClosed` | Recreate PRs even if same ones were closed previously | boolean | `false` | `RENOVATE_RECREATE_CLOSED` | `--recreate-closed` |
| `branchName` | Branch name template | string | `"renovate/{{depName}}-{{newVersionMajor}}.x"` | | |
| `commitMessage` | Commit message template | string | `"Update dependency {{depName}} to version {{newVersion}}"` | | |
| `prTitle` | Pull Request title template | string | `"{{#if isPin}}Pin{{else}}Update{{/if}} dependency {{depName}} to version {{#if isMajor}}{{newVersionMajor}}.x{{else}}{{newVersion}}{{/if}}"` | | |
| `prBody` | Pull Request body template | string | `"This Pull Request updates dependency {{depName}} from version {{currentVersion}} to {{newVersion}}\n\n{{changelog}}"` | | |
| `labels` | Labels to add to Pull Request | list | `[]` | `RENOVATE_LABELS` | `--labels` |
| `assignees` | Assignees for Pull Request | list | `[]` | `RENOVATE_ASSIGNEES` | `--assignees` |
2017-01-31 13:54:16 +00:00
| `reviewers` | Requested reviewers for Pull Requests | list | `[]` | `RENOVATE_REVIEWERS` | `--reviewers` |
2017-01-20 13:03:18 +00:00
| `logLevel` | Logging level | string | `"info"` | `LOG_LEVEL` | `--log-level` |