From 1621fb057dc4aed8cf383aeeab3644e65ad71ee9 Mon Sep 17 00:00:00 2001 From: JoblersTune Date: Wed, 31 Jul 2024 08:36:53 +0200 Subject: [PATCH] chore: updating the code block language identifier to have consistent approach through the docs --- localenv/README.md | 4 ++-- .../documentation/src/content/docs/playground/autopeering.md | 4 ++-- .../documentation/src/content/docs/playground/overview.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/localenv/README.md b/localenv/README.md index 684d5bb27e..c657639670 100644 --- a/localenv/README.md +++ b/localenv/README.md @@ -129,7 +129,7 @@ If you want to start one local instance of Rafiki and peer it automatically to [ // using Tigerbeetle DB -``` +```sh pnpm localenv:compose:autopeer // OR using Postgres DB @@ -298,7 +298,7 @@ Keep-Alive: timeout=5 It is possible that upon (re)starting the local playground, you may run into an issue where there are no accounts/wallet addresses visible in the mock account servicing entities' pages (http://localhost:3030, http://localhost:3031). This is because seeding of the initial account data only works against an empty database. To correct this, clear the volumes, and restart the container via: -``` +```sh pnpm localenv:compose down --volumes pnpm localenv:compose up -d ``` diff --git a/packages/documentation/src/content/docs/playground/autopeering.md b/packages/documentation/src/content/docs/playground/autopeering.md index a371c7c9a7..59f59881ce 100644 --- a/packages/documentation/src/content/docs/playground/autopeering.md +++ b/packages/documentation/src/content/docs/playground/autopeering.md @@ -4,7 +4,7 @@ title: Auto-Peering If you want to start one local instance of Rafiki and peer it automatically to [Rafiki.money](https://rafiki.money), you can run the following commands: -``` +```sh // using Tigerbeetle DB pnpm localenv:compose:autopeer @@ -26,7 +26,7 @@ Note that you have to go through an additional "login" step by providing you IPv To shut down the connection and to clear the environment, run -``` +```sh pnpm localenv:compose down --volumes ``` diff --git a/packages/documentation/src/content/docs/playground/overview.md b/packages/documentation/src/content/docs/playground/overview.md index 7426712f9b..b26bc7aa53 100644 --- a/packages/documentation/src/content/docs/playground/overview.md +++ b/packages/documentation/src/content/docs/playground/overview.md @@ -263,7 +263,7 @@ Keep-Alive: timeout=5 It is possible that upon (re)starting the local playground, you may run into an issue where there are no accounts/wallet addresses visible in the mock account servicing entities' pages (http://localhost:3030, http://localhost:3031). This is because seeding of the initial account data only works against an empty database. To correct this, clear the volumes, and restart the container via: -``` +```sh pnpm localenv:compose down --volumes pnpm localenv:compose up -d ```