From 05e1d7d00db96f0ba77abb2c5b4b7e7dfc43826e Mon Sep 17 00:00:00 2001 From: Tieman0220 <128452144+Tieman0220@users.noreply.github.com> Date: Fri, 21 Apr 2023 18:34:29 -0500 Subject: [PATCH 1/2] Update 2_setting_up.md update to provider IP_ADDRESS to make clear a FQDN should appear there instead. move source ~/.profile above make install remove "install make" as this is done when Go is installed --- docs/nodes/providers/2_setting_up.md | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/docs/nodes/providers/2_setting_up.md b/docs/nodes/providers/2_setting_up.md index 50cefb9..9684063 100644 --- a/docs/nodes/providers/2_setting_up.md +++ b/docs/nodes/providers/2_setting_up.md @@ -20,17 +20,6 @@ Check latest version [here](https://github.com/JackalLabs/canine-provider/releas ::: -Install make and confirm installation. - -```sh -sudo apt update - -sudo apt install make - -make --version - -``` - Build jprovd and source the .profile to ensure your shell can find jprovd. Confirm installation. ```sh @@ -42,10 +31,10 @@ git pull git checkout {version} -make install - source ~/.profile +make install + jprovd --version ``` @@ -112,7 +101,7 @@ Mainnet tokens can be purchased on https://frontier.osmosis.zone/ 5. Initialize the provider ```sh -jprovd init {IP_ADDRESS} {STORAGE_IN_BYTES} {KEYBASE_IDENTITY} --home=$PHOME +jprovd init {FQDN} {STORAGE_IN_BYTES} {KEYBASE_IDENTITY} --home=$PHOME ``` example: @@ -121,7 +110,7 @@ example: jprovd init "https://storagep1.chainstrategies.cloud" "9000" "" --home=$PHOME ``` - Please note that 'https://' is required to be included in the ip or init will throw an error. + Please note that 'https://' is required to be included in the FQDN or init will throw an error. Link for TB to Bytes converter: https://www.convertunits.com/from/TB/to/byte 6. Start the provider From 0d73bdefb539e3b4569dd261b59be027ca1ea263 Mon Sep 17 00:00:00 2001 From: Jackson Willette <128452144+Tieman0220@users.noreply.github.com> Date: Fri, 21 Apr 2023 21:37:33 -0500 Subject: [PATCH 2/2] Update 2_setting_up.md resolve comments --- docs/nodes/providers/2_setting_up.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/docs/nodes/providers/2_setting_up.md b/docs/nodes/providers/2_setting_up.md index 9684063..10a400c 100644 --- a/docs/nodes/providers/2_setting_up.md +++ b/docs/nodes/providers/2_setting_up.md @@ -20,6 +20,17 @@ Check latest version [here](https://github.com/JackalLabs/canine-provider/releas ::: +Install make and confirm installation. + +```sh +sudo apt update + +sudo apt install make + +make --version + +``` + Build jprovd and source the .profile to ensure your shell can find jprovd. Confirm installation. ```sh @@ -31,10 +42,10 @@ git pull git checkout {version} -source ~/.profile - make install +source ~/.profile + jprovd --version ```