Skip to content

Commit

Permalink
Merge pull request #97 from hyperledger/hotfix/add-config
Browse files Browse the repository at this point in the history
Hotfix/add config
  • Loading branch information
MizukiSonoko committed Dec 22, 2016
2 parents 1160360 + f28b887 commit e7d3e9f
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
config/*.py
config/__pycahe__
**/__pycache__/*
__pycache__/*
Expand Down
13 changes: 13 additions & 0 deletions config/fabric.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

from collections import namedtuple
GitHub = namedtuple("name", "email")
github = GitHub( "", "")


myhosts = [""]
port = "22"
user = "mizuki"
password = ""
repo_name = "https://github.com/hyperledger/iroha"
deploy_hosts = [""]

30 changes: 30 additions & 0 deletions config/sumeragi.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"me":{
"ip":"172.17.0.6",
"name":"kabohara",
"publicKey":"Sht5opDIxbyK+oNuEnXUs5rLbrvVgb2GjSPfqIYGFdU=",
"privateKey":"aGIuSZRhnGfFyeoKNm/NbTylnAvRfMu3KumOEfyT2HPf36jSF22m2JXWrdCmKiDoshVqjFtZPX3WXaNuo9L8WA=="
},
"group":[
{
"ip":"172.17.0.3",
"name":"mizuki",
"publicKey":"jDQTiJ1dnTSdGH+yuOaPPZIepUj1Xt3hYOvLQTME3V0="
},
{
"ip":"172.17.0.4",
"name":"natori",
"publicKey":"Q5PaQEBPQLALfzYmZyz9P4LmCNfgM5MdN1fOuesw3HY="
},
{
"ip":"172.17.0.5",
"name":"kabohara",
"publicKey":"f5MWZUZK9Ga8XywDia68pH1HLY/Ts0TWBHsxiFDR0ig="
},
{
"ip":"172.17.0.6",
"name":"samari",
"publicKey":"Sht5opDIxbyK+oNuEnXUs5rLbrvVgb2GjSPfqIYGFdU="
}
]
}

0 comments on commit e7d3e9f

Please sign in to comment.