-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a local-setup config to the tutorial (integritee book) (#666)
- Loading branch information
Felix Müller
authored
Feb 28, 2022
1 parent
cbeff86
commit e0c246b
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ | ||
"node": { | ||
"bin": "../integritee-node/target/release/integritee-node", | ||
"flags": [ | ||
"--tmp", | ||
"--dev", | ||
"-lruntime=info", | ||
"--ws-port", | ||
"9944", | ||
"--port", | ||
"30390", | ||
"--rpc-port", | ||
"8990" | ||
] | ||
}, | ||
"workers": [ | ||
{ | ||
"source": "bin", | ||
"flags": [ | ||
"-P", | ||
"2000", | ||
"-p", | ||
"9944", | ||
"-w", | ||
"2001", | ||
"-r", | ||
"3443" | ||
], | ||
"subcommand_flags": [ | ||
"--skip-ra", | ||
"--dev" | ||
] | ||
}, | ||
{ | ||
"source": "bin", | ||
"flags": [ | ||
"-P", | ||
"3000", | ||
"-p", | ||
"9944", | ||
"-w", | ||
"3001", | ||
"-r", | ||
"3444" | ||
], | ||
"subcommand_flags": [ | ||
"--skip-ra", | ||
"--dev" | ||
] | ||
} | ||
] | ||
} |