Skip to content

Commit d72fe7b

Browse files
authored
chore: re-enable Prettier for docs (#3147)
1 parent 4e68d7f commit d72fe7b

File tree

11 files changed

+66
-60
lines changed

11 files changed

+66
-60
lines changed

.prettierignore

-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,4 @@ build
1414
**/styles/*.css
1515
.docusaurus
1616
.cache-loader
17-
packages/documentation/**
1817
.astro

packages/documentation/astro.config.mjs

+3-3
Original file line numberDiff line numberDiff line change
@@ -257,9 +257,9 @@ export default defineConfig({
257257
],
258258
plugins: [
259259
starlightLinksValidator({
260-
errorOnLocalLinks: false,
261-
}),
262-
],
260+
errorOnLocalLinks: false
261+
})
262+
]
263263
}),
264264
GraphQL({
265265
schema: '../backend/src/graphql/schema.graphql',

packages/documentation/src/content/docs/integration/playground/overview.mdx

+3-2
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,7 @@ You can either trigger the debugger by adding `debugger` statements in the code
178178
#### Debugging with VS Code:
179179

180180
To debug with VS Code, add this configuration to your `.vscode/launch.json`:
181+
181182
```json
182183
{
183184
"name": "Attach to docker (cloud-nine-backend)",
@@ -220,7 +221,7 @@ The following are the most commonly used commands:
220221
| pnpm localenv:compose up | Start (with TigerBeetle) |
221222
| pnpm localenv:compose up -d | Start (with TigerBeetle) detached |
222223
| pnpm localenv:compose down | Down (with TigerBeetle) |
223-
| pnpm localenv:compose down --volumes | Down and kill volumes (with TigerBeetle)
224+
| pnpm localenv:compose down --volumes | Down and kill volumes (with TigerBeetle) |
224225
| pnpm localenv:compose down --volumes --rmi all | Down, kill volumes (with TigerBeetle) and images |
225226
| pnpm localenv:compose:psql config | Show all merged config (with PostgreSQL) |
226227
| pnpm localenv:compose build | Build all the containers (with TigerBeetle) |
@@ -292,4 +293,4 @@ test.rafiki.viXmy1OVHgvmQakNjX1C6kQMri92DzHeISEv-5VzTDuFhrpsrkDzsq5OO9Lfa9yed0L2
292293

293294
#### TigerBeetle container exists with code 137
294295

295-
There is a known <LinkOut href='https://docs.tigerbeetle.com/operating/docker/#exited-with-code-137'>issue</LinkOut> when running TigerBeetle in Docker. The container exits without logs and simply shows error code 137. To fix this, increase the Docker memory limit. If you run the local Docker playground on a Windows machine via the Windows Subsystem for Linux (WSL), you can increase the memory limit by <LinkOut href='https://learn.microsoft.com/en-us/windows/wsl/wsl-config#example-wslconfig-file'>configuring</LinkOut> your `.wslconfig` file.
296+
There is a known <LinkOut href='https://docs.tigerbeetle.com/operating/docker/#exited-with-code-137'>issue</LinkOut> when running TigerBeetle in Docker. The container exits without logs and simply shows error code 137. To fix this, increase the Docker memory limit. If you run the local Docker playground on a Windows machine via the Windows Subsystem for Linux (WSL), you can increase the memory limit by <LinkOut href='https://learn.microsoft.com/en-us/windows/wsl/wsl-config#example-wslconfig-file'>configuring</LinkOut> your `.wslconfig` file.

packages/documentation/src/content/docs/integration/prod/docker-compose.mdx

+7-3
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,12 @@ Deploy a general purpose VM with the following minimum specifications:
3737

3838
Install the following software on the VM:
3939

40-
- <LinkOut href='https://docs.docker.com/engine/install/'>Docker Engine</LinkOut>
41-
- <LinkOut href='https://docs.docker.com/compose/install/#scenario-two-install-the-compose-plugin'>Docker Compose</LinkOut>
40+
- <LinkOut href='https://docs.docker.com/engine/install/'>
41+
Docker Engine
42+
</LinkOut>
43+
- <LinkOut href='https://docs.docker.com/compose/install/#scenario-two-install-the-compose-plugin'>
44+
Docker Compose
45+
</LinkOut>
4246

4347
### Install Nginx and Certbot
4448

@@ -263,7 +267,7 @@ Create nginx configuration files for every exposed domain:
263267
| Open Payments resource server | DOMAIN | myrafiki.com | /etc/nginx/sites-available/open_payments_resource_server.config |
264268
| ILP Connector | ilp.DOMAIN | ilp.myrafiki.com | /etc/nginx/sites-available/ilp.config |
265269
| Open Payments auth server | auth.DOMAIN | auth.myrafiki.com | /etc/nginx/sites-available/open_payments_auth_server.config |
266-
| Admin UI | admin.DOMAIN | admin.myrafiki.com | /etc/nginx/sites-available/admin.config |
270+
| Admin UI | admin.DOMAIN | admin.myrafiki.com | /etc/nginx/sites-available/admin.config |
267271

268272
</div>
269273

packages/documentation/src/content/docs/integration/requirements/wallet-addresses.mdx

+13-12
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Each payment account belonging to your users (e.g., customers) must have at leas
1111

1212
- Your Rafiki instance must be set up for at least one asset before wallet addresses can be created as each wallet address must have an asset assigned to it.
1313
- Wallet address URLs are treated as case-insensitive, meaning that both lowercase and uppercase variations of the same address will be recognized as identical.
14+
1415
:::
1516

1617
## Create wallet addresses
@@ -84,12 +85,12 @@ We strongly recommend you store at least the `walletAddress.id` in your internal
8485

8586
<div class="overflow-table">
8687

87-
|Variable | Description |
88-
|-------- | ----------- |
89-
| `assetId` | The unique ID of the asset, assigned by Rafiki when the asset was created, that the wallet address's underlying payment account is denominated in |
90-
| `publicName` | The public name associated with the wallet address |
91-
| `url` | The wallet address's case-insensitive URL |
92-
| `additionalProperties` | Optional [additional properties](/apis/graphql/backend/inputobjects/#additionalpropertyinput) associated with the wallet address |
88+
| Variable | Description |
89+
| ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------- |
90+
| `assetId` | The unique ID of the asset, assigned by Rafiki when the asset was created, that the wallet address's underlying payment account is denominated in |
91+
| `publicName` | The public name associated with the wallet address |
92+
| `url` | The wallet address's case-insensitive URL |
93+
| `additionalProperties` | Optional [additional properties](/apis/graphql/backend/inputobjects/#additionalpropertyinput) associated with the wallet address |
9394

9495
</div>
9596

@@ -194,11 +195,11 @@ Open Payments <LinkOut href="https://openpayments.dev/apis/wallet-address-server
194195

195196
<div class="overflow-table">
196197

197-
| Parameter | Required value | Description |
198-
| --------- | -------------- | ----------- |
199-
| `alg` | `EdDSA` | The algorithm used to generate the key pair |
200-
| `kty` | `OKP` | The key type identifying the cryptographic algorithm family used with the key |
201-
| `crv` | `Ed25519` | The cryptographic curve used with the key |
198+
| Parameter | Required value | Description |
199+
| --------- | -------------- | ----------------------------------------------------------------------------- |
200+
| `alg` | `EdDSA` | The algorithm used to generate the key pair |
201+
| `kty` | `OKP` | The key type identifying the cryptographic algorithm family used with the key |
202+
| `crv` | `Ed25519` | The cryptographic curve used with the key |
202203

203204
</div>
204205

@@ -285,4 +286,4 @@ mutation RevokeWalletAddressKey($input: RevokeWalletAddressKeyInput!) {
285286
}
286287
```
287288

288-
</CodeBlock>
289+
</CodeBlock>

packages/documentation/src/content/docs/integration/requirements/webhook-events.mdx

+2
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ Rafiki-Signature: t=<timestamp>, v<version>=<signature_digest>
163163
### Prepare the signed payload string
164164

165165
To recreate the signed payload string, concatenate the following.
166+
166167
- The timestamp extracted from the header
167168
- A period (.) character
168169
- The actual JSON payload from the request body, containing the `id`, `type`, and `data` attributes
@@ -178,6 +179,7 @@ Use HMAC SHA-256 with the `SIGNATURE_SECRET` environment variable as the key and
178179
Finally, compare the signature in the header to the expected signature you generated. For security, use a constant-time comparison function to prevent timing attacks.
179180

180181
### Example
182+
181183
Below is an example in JavaScript to verify Rafiki's webhook signature:
182184

183185
<CodeBlock title="Verify webhook signature example">

packages/documentation/src/content/docs/overview/concepts/telemetry.mdx

+10-10
Original file line numberDiff line numberDiff line change
@@ -167,23 +167,23 @@ When the `ENABLE_TELEMETRY` variable is `true`, the following are required.
167167

168168
<div class="overflow-table">
169169

170-
| Variable name | Type | Description |
171-
| ------------- | ---- | ----------- |
172-
| `INSTANCE_NAME` | String | Your Rafiki instance's name used to communicate for telemetry and auto-peering. For telemetry, it's used to distinguish between the different instances pushing data to the telemetry collector. | Y |
170+
| Variable name | Type | Description |
171+
| --------------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --- |
172+
| `INSTANCE_NAME` | String | Your Rafiki instance's name used to communicate for telemetry and auto-peering. For telemetry, it's used to distinguish between the different instances pushing data to the telemetry collector. | Y |
173173

174174
</div>
175175

176176
#### Optional
177177

178178
<div class="overflow-table">
179179

180-
| Variable name | Type | Description |
181-
| ------------- | ---- | ----------- |
182-
| `ENABLE_TELEMETRY` | Boolean | Enables the telemetry service on Rafiki. Defaults to `true`. |
183-
| `LIVENET` | Boolean | Determines where to send metrics. Defaults to `false`, resulting in metrics being sent to the testnet OTEL Collector. <p>Set to `true` on production environments dealing with real money.</p> |
184-
| `OPEN_TELEMETRY_COLLECTOR_URLS` | String | A CSV of URLs for OTEL Collectors (e.g., `http://otel-collector-NLB-e3172ff9d2f4bc8a.elb.eu-west-2.amazonaws.com:4317,http://happy-life-otel-collector:4317`). |
185-
| `OPEN_TELEMETRY_EXPORT_INTERVAL` | Number | Indicates, in milliseconds, how often the instrumented Rafiki instance should send metrics. Defaults to`15000`. |
186-
| `TELEMETRY_EXCHANGE_RATES_URL` | String | <p>Defines the endpoint Rafiki will query for exchange rates. Used as a fallback if/when [exchange rates](/integration/requirements/exchange-rates) aren’t provided.</p><p>When set, the response format of the external exchange rates API should be of type `rates`, as is expected by the rate service.</p><p>Defaults to `https://telemetry-exchange-rates.s3.amazonaws.com/exchange-rates-usd.json`, which points to a public S3 that has the previously mentioned required format, updated daily.</p> |
180+
| Variable name | Type | Description |
181+
| -------------------------------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
182+
| `ENABLE_TELEMETRY` | Boolean | Enables the telemetry service on Rafiki. Defaults to `true`. |
183+
| `LIVENET` | Boolean | Determines where to send metrics. Defaults to `false`, resulting in metrics being sent to the testnet OTEL Collector. <p>Set to `true` on production environments dealing with real money.</p> |
184+
| `OPEN_TELEMETRY_COLLECTOR_URLS` | String | A CSV of URLs for OTEL Collectors (e.g., `http://otel-collector-NLB-e3172ff9d2f4bc8a.elb.eu-west-2.amazonaws.com:4317,http://happy-life-otel-collector:4317`). |
185+
| `OPEN_TELEMETRY_EXPORT_INTERVAL` | Number | Indicates, in milliseconds, how often the instrumented Rafiki instance should send metrics. Defaults to`15000`. |
186+
| `TELEMETRY_EXCHANGE_RATES_URL` | String | <p>Defines the endpoint Rafiki will query for exchange rates. Used as a fallback if/when [exchange rates](/integration/requirements/exchange-rates) aren’t provided.</p><p>When set, the response format of the external exchange rates API should be of type `rates`, as is expected by the rate service.</p><p>Defaults to `https://telemetry-exchange-rates.s3.amazonaws.com/exchange-rates-usd.json`, which points to a public S3 that has the previously mentioned required format, updated daily.</p> |
187187

188188
</div>
189189

packages/documentation/src/content/docs/resources/glossary.mdx

+5-6
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ An API standard and a set of APIs that allows clients to securely retrieve accou
6262

6363
## Outgoing payment
6464

65-
An object created by the sender’s ASE, on their resource server, that represents a payment being sent. This object contains information about the outgoing payment, such as the amount, currency, receiver’s wallet address, and payment status.
65+
An object created by the sender’s ASE, on their resource server, that represents a payment being sent. This object contains information about the outgoing payment, such as the amount, currency, receiver’s wallet address, and payment status.
6666

6767
## Payment pointer
6868

@@ -78,21 +78,20 @@ An object created by the sender’s ASE, on their resource server, that represen
7878

7979
## Resource server
8080

81-
A server that hosts and manages access to protected Open Payments resources for incoming payments, quotes, and outgoing payments.
81+
A server that hosts and manages access to protected Open Payments resources for incoming payments, quotes, and outgoing payments.
8282

8383
Rafiki's `backend` service runs an Open Payments resource server.
8484

8585
## Simple Payment Setup Protocol (SPSP)
8686

87-
An Interledger application layer protocol for exchanging payment information between two counterparties to facilitate direct payments over Interledger. The information is then used to set up a STREAM connection. You can read more about SPSP in its <LinkOut href="https://interledger.org/developers/rfcs/simple-payment-setup-protocol/">specification
88-
</LinkOut>.
87+
An Interledger application layer protocol for exchanging payment information between two counterparties to facilitate direct payments over Interledger. The information is then used to set up a STREAM connection. You can read more about SPSP in its <LinkOut href="https://interledger.org/developers/rfcs/simple-payment-setup-protocol/">specification</LinkOut>.
8988

9089
## Streaming Transport for the Real-Time Exchange of Assets and Messages (STREAM)
9190

9291
An Interledger transport layer protocol for sending and receiving authenticated ILP packets between peers and determining the path exchange rate. See the <LinkOut href="https://interledger.org/developers/rfcs/stream-protocol/">STREAM specification</LinkOut> for more information.
9392

9493
## Wallet address
9594

96-
A secure, unique URL that identifies an Open Payments-enabled account. It acts as an entry point to the Open Payments APIs, facilitating interactions like sending and receiving payments.
95+
A secure, unique URL that identifies an Open Payments-enabled account. It acts as an entry point to the Open Payments APIs, facilitating interactions like sending and receiving payments.
9796

98-
A wallet address is publicly shareable and used to interact with the underlying payment account without compromising its security. Wallet address URLs are treated as case-insensitive, meaning that both lowercase and uppercase variations of the same address will be recognized as identical.
97+
A wallet address is publicly shareable and used to interact with the underlying payment account without compromising its security. Wallet address URLs are treated as case-insensitive, meaning that both lowercase and uppercase variations of the same address will be recognized as identical.

0 commit comments

Comments
 (0)