This app contains fullstack example on how to integrate with Boom SDK.
- Enter server directory
cd ./server - create .env file using
/server/.env.exampleas template. You'll need to fill in boom access token and secret key. As well as, provide your plaid sandbox credentials there. - Install all dependencies
npm i - Run the migration
npx prisma migrate dev - Build and start server
npm run build & npm run dev
This server integration uses prisma as ORM and sqlite as db. You can find proposed set of fields which are mandatory for this integration in schema.prisma. (/server/prisma/schema.prisma)
- Enter app directory
cd ./app - Install all dependencies
npm i - Start server
npm run start