A monorepo containing the sBTC Bridge application and supporting documentation.
sbtc-parallel-stack/
├── apps/
│ └── bridge/ # sBTC Bridge Next.js application
└── docs/ # Documentation preview site (Docsify)
The sBTC Bridge web application for depositing BTC to mint sBTC and withdrawing sBTC back to BTC.
cd apps/bridge
npm install
npm run devEnvironment: Requires .env file with Bitcoin/Stacks node URLs. See .env.sample.
Documentation preview site for sBTC Bridge guides.
cd docs
npx serve .Live Preview: https://sbtc-parallel-stack-docs.up.railway.app
Both apps deploy automatically via Railway GitHub integration:
- Bridge: Deploys from
apps/bridgeon push tomain - Docs: Deploys from
docson push tomain
This is a monorepo managed without workspace tools (no Turborepo/Nx). Each app is independent:
- Apps don't share dependencies
- Each app has its own
package.json - Deploy and develop independently