Skip to content

Commit

Permalink
fix quickstart (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
jingshi-ant authored Nov 15, 2023
1 parent 50d1b64 commit 60eba6d
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 0 deletions.
14 changes: 14 additions & 0 deletions examples/p2p-tutorial/broker/alice/conf/party_info.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"participants": [
{
"party_code": "alice",
"endpoint": "http://broker_alice:8081",
"pubkey": "__ALICE_PUBLIC_KEY__"
},
{
"party_code": "bob",
"endpoint": "http://broker_bob:8081",
"pubkey": "__BOB_PUBLIC_KEY__"
}
]
}
14 changes: 14 additions & 0 deletions examples/p2p-tutorial/broker/bob/conf/party_info.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"participants": [
{
"party_code": "alice",
"endpoint": "http://broker_alice:8081",
"pubkey": "__ALICE_PUBLIC_KEY__"
},
{
"party_code": "bob",
"endpoint": "http://broker_bob:8081",
"pubkey": "__BOB_PUBLIC_KEY__"
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"parties": [
{
"party_code": "bob",
"public_key": "__BOB_PUBLIC_KEY__"
}
]
}
8 changes: 8 additions & 0 deletions examples/p2p-tutorial/engine/bob/conf/authorized_profile.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"parties": [
{
"party_code": "alice",
"public_key": "__ALICE_PUBLIC_KEY__"
}
]
}

0 comments on commit 60eba6d

Please sign in to comment.