From 14fbf647d2f5e8c6f37123d70b2145e8e18751ce Mon Sep 17 00:00:00 2001 From: Unknown Date: Mon, 18 Dec 2017 16:46:28 -0500 Subject: [PATCH] Updated truffle.js for Ganache-based tutorials --- truffle.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/truffle.js b/truffle.js index a6330d6..8cc069f 100644 --- a/truffle.js +++ b/truffle.js @@ -1,4 +1,11 @@ module.exports = { // See - // to customize your Truffle configuration! + // for more about customizing your Truffle configuration! + networks: { + development: { + host: "127.0.0.1", + port: 7545, + network_id: "*" // Match any network id + } + } };