-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtruffle.js
More file actions
34 lines (32 loc) · 793 Bytes
/
truffle.js
File metadata and controls
34 lines (32 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
var DefaultBuilder = require("truffle-default-builder");
module.exports = {
build: new DefaultBuilder({
"index.html": "index.html",
"app.js": [
"vendor/angular/angular.js",
"vendor/angular-route/angular-route.js",
"javascript/app.js",
"javascript/controllers/main.js",
"javascript/controllers/sendfunds.js",
"javascript/controllers/showevents.js",
"javascript/controllers/permissions.js"
],
"app.css": [
"stylesheets/app.css"
],
"images/": "images/",
"views/": "views/"
}),
networks: {
development: {
host: "localhost",
port: 8545,
network_id: "*" // match any network
},
live: {
host: "localhost",
port: 8545,
network_id: "*" // match any network
}
}
};