truffle.js 248 B

12345678910111213141516
  1. module.exports = {
  2. build: {
  3. "index.html": "index.html",
  4. "app.js": [
  5. "javascripts/app.js"
  6. ],
  7. "app.css": [
  8. "stylesheets/app.css"
  9. ],
  10. "images/": "images/"
  11. },
  12. rpc: {
  13. host: "localhost",
  14. port: 8545
  15. }
  16. };