The official Interledger.org website built with Astro and Starlight.
# Install dependencies
bun install
# Start dev server (localhost:1103)
bun run start
# Build for production
bun run build├── cms/ # Strapi CMS for content management
├── public/ # Static assets (images, favicons)
├── scripts/ # Sync and import scripts
├── src/
│ ├── components/ # Astro/React components
│ ├── config/ # Site configuration
│ ├── content/ # MDX content (blog, press, docs)
│ ├── layouts/ # Page layouts
│ ├── pages/ # Route pages
│ ├── styles/ # Global styles
│ └── utils/ # Utility functions
└── astro.config.mjs # Astro configuration
| Command | Action |
|---|---|
bun run start |
Start dev server at localhost:1103 |
bun run build |
Build production site to ./dist/ |
bun run preview |
Preview production build locally |
bun run format |
Format code with Prettier/ESLint |
bun run lint |
Check code formatting and linting |
cd cms
npm install
npm run developAdmin panel: http://localhost:1337/admin
See cms/README.md for details.