-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathtruffle.js
68 lines (67 loc) · 1.39 KB
/
truffle.js
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
var DefaultBuilder = require("truffle-default-builder");
module.exports = {
build: new DefaultBuilder({
"index.html": "index.html",
"auction.html": "auction.html",
"header.html": "header.html",
"footer.html": "footer.html",
"rightPanel.html": "rightPanel.html",
"createAuction.html": "createAuction.html",
"about.html": "about.html",
"app.js": [
"javascripts/app.js",
],
"auctionhouse.js": [
"javascripts/auctionhouse.js"
],
"network.js": [
"javascripts/network.js"
],
"auction.js": [
"javascripts/auction.js"
],
"createAuction.js": [
"javascripts/createAuction.js"
],
"about.js": [
"javascripts/about.js"
],
"jquery.min.js": [
"javascripts/jquery.min.js"
],
"bootstrap.min.js": [
"javascripts/bootstrap.min.js"
],
"app.css": [
"stylesheets/app.css"
],
"bootstrap.min.css": [
"stylesheets/bootstrap.min.css"
],
"bootstrap-theme.min.css": [
"stylesheets/bootstrap-theme.min.css"
],
"images/": "images/"
}),
rpc: {
host: "localhost",
// port: 8081
port: 8545
},
networks: {
"development": {
network_id: "default"
},
"morden": {
network_id: 2,
gas: 4612388
},
"ropsten": {
network_id: 3,
gas: 4000000
},
"live": {
network_id: 1
}
}
};