-
Notifications
You must be signed in to change notification settings - Fork 0
/
truffle.js
33 lines (32 loc) · 840 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
module.exports = {
build: {
"index.html": "index.html",
"app.js": [
"../node_modules/jquery/dist/jquery.min.js",
"../node_modules/materialize-css/dist/js/materialize.min.js",
"../node_modules/underscore/underscore-min.js",
"javascripts/functions.js",
"javascripts/ballotGlobals.js",
"javascripts/util.js",
"javascripts/ballotReader.js",
"javascripts/ballot.js",
"javascripts/html.js",
"javascripts/app.js"
],
"app.css": [
"../node_modules/materialize-css/dist/css/materialize.min.css",
"stylesheets/app.scss"
],
"images/": "images/",
"fonts/" : "../node_modules/materialize-css/dist/font/"
},
deploy: [
"Ballot",
"MetaCoin",
"ConvertLib"
],
rpc: {
host: "localhost",
port: 8545
}
};