-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtruffle.js
39 lines (38 loc) · 861 Bytes
/
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
var DefaultBuilder = require("truffle-default-builder");
module.exports = {
build: new DefaultBuilder({
"index.html": "index.html",
"app.js": [
"javascripts/app.js"
],
"bootstrap.min.js": [
"javascripts/bootstrap.min.js"
],
"app.css": [
"stylesheets/app.css",
],
"bootstrap.min.css": [
"stylesheets/bootstrap.min.css",
],
"carousel.css": [
"stylesheets/carousel.css",
],
"ie10-viewport-bug-workaround.css": [
"stylesheets/ie10-viewport-bug-workaround.css",
],
"images/": "images/"
}),
networks: {
development: {
host: "localhost",
port: 8545,
network_id: "*" // Match any network id
},
kovan: {
host: "52.57.192.243",
port: 8546,
network_id: "*",
from: "0x5b7758a2f9ccefc81badf3fd362bedd094c1881c"
}
}
};