diff --git a/README.md b/README.md index 97b8f9f..40b5871 100644 --- a/README.md +++ b/README.md @@ -77,6 +77,7 @@ cargo install toml-cli cd ~/ && git clone https://github.com/Start9Labs/start-os.git cd start-os/backend/ ./install-sdk.sh +start-sdk init ``` ## Cloning @@ -107,10 +108,11 @@ make ## Installing (on StartOS) -Sideload from the web-UI via: +Sideload from the web-UI: System > Sideload Service -...or [SSH](https://docs.start9.com/latest/user-manual/overview/ssh) into your StartOS device. +Sideload from the CLI: +[SSH](https://docs.start9.com/latest/user-manual/overview/ssh) into your StartOS device. `scp` the `.s9pk` to any directory from your local machine. Run the following command to install the package: diff --git a/docker_entrypoint.sh b/docker_entrypoint.sh index 9c64a2b..96d39c7 100755 --- a/docker_entrypoint.sh +++ b/docker_entrypoint.sh @@ -11,7 +11,7 @@ export LAN_HOST=$(yq e '.lan-address' /data/start9/config.yaml) export JM_RPC_USER=$(yq e '.bitcoind-user' /data/start9/config.yaml) export JM_RPC_PASSWORD=$(yq e '.bitcoind-password' /data/start9/config.yaml) export JM_RPC_PORT=8332 -export JM_RPC_WALLET_FILE="embassy_jam_wallet" +export JM_RPC_WALLET_FILE="jam_wallet_default" export JM_RPC_HOST="bitcoind.embassy" echo "Running on Bitcoin Core..."