Configuration
If you don't want to use the Rivet default configuration, you can move your configuration into a separate file.
File-based Configuring
package.json
package.json
Standalone file
Rivet accepts configuration files with the conventions.
.rivetrc
.rivetrc.[js|json]
.rivet.[js|json]
rivetrc
rivetrc.[js|json]
rivet.[js|json]
All configurations found will be merged into a single configuration object. That means if you have both a rivet configuration file, and rivet configuration defined in package.json
, they will be merged. package.json
is the last file read, and anything specified will overwrite other configurations.
NOTE: Rivet configuration files are CommonJS modules. You can use any javascript here, as long as you export a configuration object.
Configuration options
appRoot
appRoot
The root app path.
Default: Root app directory with package.json
contractsRoot
contractsRoot
The root path to your contracts folder, relative to appRoot
.
Default:
contracts/"
contractsPath
contractsPath
Glob pattern used to find contract files, relative to contractsRoot
.
Default:
"**/*.contract.json"
compiledContractsRoot
compiledContractsRoot
The location where contracts are compiled, relative to appRoot
.
Default:
contracts/json
aliases
aliases
Last updated