-
Notifications
You must be signed in to change notification settings - Fork 1
/
truffle.js
38 lines (38 loc) · 1012 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
module.exports = {
build: {
"index.html": "index.html",
"create-mountain.html": "create-mountain.html",
"mountain.html": "mountain.html",
"deposit.html": "deposit.html",
"pay-back.html": "pay-back.html",
"borrow.html": "borrow.html",
"withdraw.html": "withdraw.html",
"invite.html": "invite.html",
"join.html": "join.html",
"dashboard.html": "dashboard.html",
"app.js": [
"javascripts/jquery.min.js",
"javascripts/common.js",
"javascripts/createForm.js",
"javascripts/dashboard.js",
"javascripts/moneyTransactions.js",
"javascripts/mountainDetail.js",
"javascripts/accountTransactions.js"
],
"static/css/app.css": [
"static/css/app.css",
"static/css/bootstrap.css",
"static/css/font-awesome.min.css"
],
"static/images/": "static/images/",
"static/fonts/": "static/fonts/"
},
deploy: [
"MountainFactory",
"Mountain"
],
rpc: {
host: "localhost",
port: 8545
}
};