Persist ganache DB and use fixed Mnemonic #27

Merged
bumi merged 3 commits from presist-ganache-db into master 2018-04-17 11:24:58 +00:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit 4b1cbbd0f7 - Show all commits

3
.gitignore vendored
View File

@@ -1,2 +1,3 @@
build
node_modules
node_modules
.ganache-db

View File

@@ -9,7 +9,7 @@
"scripts": {
"build-json": "truffle compile && node ./scripts/build-json.js",
"bootstrap": "truffle migrate --reset && truffle exec scripts/seeds.js && npm run build-json",
"ganache": "ganache-cli -p 7545 -i 100",
"ganache": "ganache-cli -p 7545 -i 100 --db=./.ganache-db -m kredits",
"dev": "truffle migrate && npm run build-json",
"test": "echo \"Error: no test specified\" && exit 1"
},