Configurations in Truffle are stored as a JavaScript file in the root of the project. This helps in configuring various aspects of the project including network, accounts, cost, and so on. In this recipe, you will learn about the various configuration options available in Truffle.
Advanced Truffle configuration
Getting ready
You need to have Truffle installed on your machine to step through this recipe. Verify the installation using the truffle version command.
How to do it...
-
Create a configuration file called truffle.js at the root of your project. It should be a JavaScript...