Skip to content

Instantly share code, notes, and snippets.

@ianmonkuk
Created February 17, 2017 15:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ianmonkuk/791df5e10259f0d5bdd2bc6af057dd87 to your computer and use it in GitHub Desktop.
Save ianmonkuk/791df5e10259f0d5bdd2bc6af057dd87 to your computer and use it in GitHub Desktop.
var DefaultBuilder = require("truffle-default-builder");
module.exports = {
build: new DefaultBuilder({
"index.html": "index.html",
"app.js": [
"javascripts/app.js"
],
"app.css": [
"stylesheets/app.css"
],
"images/": "images/"
}),
networks: {
development: {
host: "localhost",
port: 8545,
network_id: "*", // Match any network id
from: "0x00a329c0648769A73afAc7F9381E08FB43dBEA72"
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment