forked from Kerala-Blockchain-Academy/SkillChain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtruffle.js
45 lines (41 loc) · 830 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
40
41
42
43
44
45
module.exports = {
build: {
"index.html": "index.html",
"workerregister.html":"workerregister.html",
"workerhome.html":"workerhome.html",
"employerhome.html":"employerhome.html",
"addjob.html":"addjob.html",
"addexperience.html":"addexperience.html",
"listjob.html":"listjob.html",
"app.js": [
"javascripts/jQuery.js",
"javascripts/lightwallet.js",
"javascripts/hooked-web3-provider.js",
"javascripts/app.js"
],
"jobpop.js" : [
"javascripts/jobpop.js"
],
"exp.js" : [
"javascripts/exp.js"
],
"emp.js" : [
"javascripts/emp.js"
],
"wo.js" : [
"javascripts/wo.js"
],
"jspdf.js" : [
"javascripts/jspdf.js"
],
"stylesheets/styles.css": [
"stylesheets/styles.css"
],
"images/": "images/"
},
rpc: {
host: "localhost",
port: 8545,
gas:3000000
}
};