File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -35,3 +35,13 @@ warnet quickstart
35
35
```
36
36
37
37
This will check you have the required dependencies and guide you through setting up and deploying your first network.
38
+
39
+ ## fork-observer
40
+
41
+ If you enabled [ fork-observer] ( https://github.com/0xB10C/fork-observer ) , you must forward the port from the cluster to your local machine:
42
+
43
+ ``` bash
44
+ kubectl port-forward fork-observer 2323
45
+ ```
46
+
47
+ And then the GUI can be accessed via ` localhost:2323 ` in a web browser.
Original file line number Diff line number Diff line change @@ -221,6 +221,12 @@ def quickstart():
221
221
click .echo (
222
222
f"\n Edit the network files found in { custom_network_path } before deployment if you want to customise the network."
223
223
)
224
+ if fork_observer :
225
+ click .echo (
226
+ "If you enabled fork-observer you must forward the port from the cluster to your local machine:\n "
227
+ "`kubectl port-forward fork-observer 2323`\n "
228
+ "fork-observer will then be available at web address: localhost:2323"
229
+ )
224
230
225
231
click .echo ("\n When you're ready, run the following command to deploy this network:" )
226
232
click .echo (f"warnet deploy { custom_network_path } " )
You can’t perform that action at this time.
0 commit comments