August 2018
Intermediate to advanced
404 pages
11h 19m
English
Create a configuration file called truffle.js at the root of your project. It should be a JavaScript file that exports the configuration as an object in the required format.
If you are using Windows, rename the configuration file to something like truffle-config.js to avoid any naming conflicts with the truffle command.
module.exports = { networks: { development: { host: "localhost", port: 8545, network_id: "*" // Match any network id } }};
Include the list of available networks for the migration process in ...