-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathtruffle.js
More file actions
39 lines (39 loc) · 748 Bytes
/
truffle.js
File metadata and controls
39 lines (39 loc) · 748 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
35
36
37
38
39
module.exports = {
build: {
"index.html": "index.html",
"community.html": "community.html",
"treasury.html": "treasury.html",
"tasks.html": "tasks.html",
"newTask.html": "newTask.html",
"app.js": [
"javascripts/app.js"
],
"navbarDropdown.js": [
"javascripts/navbarDropdown.js"
],
"bignumber.js": [
"javascripts/bignumber.js"
],
"web3.js": [
"javascripts/web3.js"
],
"identicon.js": [
"javascripts/identicon.js"
],
"pnglib.js": [
"javascripts/pnglib.js"
],
"app.css": [
"stylesheets/app.css"
],
"images/": "images/"
},
deploy: [
"FarmShare",
"TaskBoard"
],
rpc: {
host: "localhost",
port: 8545
}
};