Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 24 additions & 24 deletions packages/documentation/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,30 @@ export default defineConfig({
}
]
},
{
label: 'APIs',
collapsed: true,
items: [
{
label: 'GraphQL Admin APIs',
link: '/apis/graphql/admin-api-overview'
},
{
label: 'Backend Admin API',
collapsed: true,
autogenerate: {
directory: 'apis/graphql/backend'
}
},
{
label: 'Auth Admin API',
collapsed: true,
autogenerate: {
directory: 'apis/graphql/auth'
}
}
]
},
{
label: 'Resources',
collapsed: true,
Expand Down Expand Up @@ -282,30 +306,6 @@ export default defineConfig({
link: '/resources/get-involved'
}
]
},
{
label: 'APIs',
collapsed: true,
items: [
{
label: 'GraphQL Admin APIs',
link: '/apis/graphql/admin-api-overview'
},
{
label: 'Backend Admin API',
collapsed: true,
autogenerate: {
directory: 'apis/graphql/backend'
}
},
{
label: 'Auth Admin API',
collapsed: true,
autogenerate: {
directory: 'apis/graphql/auth'
}
}
]
}
],
plugins: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ import { LinkOut } from '@interledger/docs-design-system'

This guide is an example of deploying Rafiki using Docker Compose with Nginx as a reverse proxy on a virtual machine (VM) in a cloud environment. This guide also uses <LinkOut href='https://certbot.eff.org/'>Certbot</LinkOut> to generate <LinkOut href='https://letsencrypt.org/'>Let’s Encrypt TLS certificates</LinkOut> to secure exposed ports using HTTPS.

:::note
While Docker Compose could serve as a production deployment, it is an environment best suited for development and testing. For more information, refer to Docker's <LinkOut href='https://docs.docker.com/compose/intro/features-uses/#common-use-cases-of-docker-compose'>documentation</LinkOut> on common use cases.
:::

## Prerequisites

### Domain and subdomains setup
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The [Local Playground](/integration/playground/overview) allows you to test Rafi

## Use cases

### Peer-to-peer payments
### Peer-to-peer payments between ASEs

In the context of Rafiki, a peer is another ASE with whom you transact. Forming a peering relationship requires you to both agree on the currency in which you will transact, on a settlement mechanism and cadence, and other details. Interledger creates interoperability between different payment systems and currencies, making it easier for peers to directly transact with one another.

Expand Down
Loading