Skip to main content

Setup

Folder Structure

├── apps/
│ ├── admin/ # Admin UI React App
│ ├── agent/ # Fulfillment Agent Application (React Native)
│ └── server/ # BPP Backend Server
│ └── webhook/ # BPP Webhook
├── packages/
│ ├── bpp-sdk/ # BPP SDK Library
│ └── shared-utils/ # Shared Utility Library
└── package.json

1. Fork it 🍴

2. Clone it 👥

git clone https://github.com/Sarfraz-droid/BPP-Boilerplate-SDK.git

3. Set it up ⬆️

  • First, run yarn or npm install on root to install all dependencies
  • Go over to packages/bpp-sdk and run npm run build

4. Run it 🏁

  • To run the admin app, go over to apps/admin and run yarn dev
  • To run the server app, go over to apps/server and run yarn dev
  • To run the agent app, go over to apps/agent and run yarn start