Add Ansible playbooks to setup Docker and stack orchestrator #6

Merged
nabarun merged 5 commits from deep-stack/testnet-ops:ag-laconic-so into main 2024-09-12 04:43:54 +00:00
Showing only changes of commit 6747c06c72 - Show all commits

View File

@ -63,7 +63,14 @@ To run the playbook on a remote host:
## Verify Installation
- After the installation is complete, ensure that `$HOME/bin` is added to your `PATH` to access `laconic-so` from anywhere in the terminal. You can do this by running the following command:
- After the installation is complete, verify if `$HOME/bin` is already included in your PATH by running:
```bash
echo $PATH | grep -q "$HOME/bin" && echo "$HOME/bin is already in PATH" || echo "$HOME/bin is not in PATH"
```
If the command outputs `"$HOME/bin is not in PATH"`, you'll need to add it to your `PATH`.
- To add `$HOME/bin` to your PATH, run the following command:
```bash
export PATH="$HOME/bin:$PATH"