This repository has been archived by the owner on Sep 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
truffle.json
56 lines (53 loc) · 1.71 KB
/
truffle.json
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
{
"build": {
// Copy ./app/index.html (right hand side) to ./build/index.html.
"index.html": "index.html",
"app.js": [
// Paths relative to "app" directory that should be
// concatenated and processed during build.
"javascripts/lib/jquery.js",
"javascripts/lib/jquery-tiny-pubsub.js",
"javascripts/lib/sha256.js",
"javascripts/lib/handlebars.js",
"javascripts/lib/angular.min.js",
"javascripts/lib/transition.js",
"javascripts/lib/modal.js",
"javascripts/lib/Chart.min.js",
"javascripts/lib/toastr.min.js",
"javascripts/chart.js",
"javascripts/index.js",
"javascripts/constant.js",
"javascripts/utils.js",
"javascripts/filters.js",
"javascripts/app.js",
"javascripts/subscribes.js",
"javascripts/controllers/search_controller.js",
"javascripts/controllers/create_controller.js",
"javascripts/controllers/account_controller.js",
"javascripts/init_data.js",
"javascripts/watchers/record_watcher.js",
"javascripts/watchers/request_watcher.js",
"javascripts/watchers/response_watcher.js",
"javascripts/watch_data.js"
],
"app.css": [
// Paths relative to "app" directory that should be
// concatenated and processed during build.
"stylesheets/app.scss"
],
// Note: You can also include directories.
// This will copy a static images directory to the build directory.
"images/": "images/",
"fonts/": "fonts/"
},
"deploy": [
// Names of contracts that should be deployed to the network.
"CreditBook",
"OrderBook"
],
"rpc": {
// Default RPC configuration.
"host": "127.0.0.1",
"port": 23333 // testrpc
}
}