Make financial services simple and accessible. Rize enables fintechs, financial institutions and brands to build across multiple account types with one API. If you want to join us Check out our open positions_
A CLI to provision the necessary components to run a banking application using Rize, which includes:
- Database - (MySQL or Postgres)
- Auth/Identity Provider - (Auth0 or AWS Cognito User Pools)
- Account Auth Provider - (Plaid)
- Middleware API - used to communicate with the Rize API securely
All of these will be run on Docker containers, which makes environments consistent and isolated from other apps regardless of where the app is deployed.
Have you watched the "Build a Banking Application In Less Than 30 Minutes" video?
- NodeJS v12 and up
- Check nvm to manage multiple versions of node/npm on your local
- Docker Desktop
- Rize credentials
- Program UID
- HMAC
- Rize Message Queue Username, Password, Topic and Hosts
- (Optional but recommended) Either an Auth0 account or an AWS Cognito User Pool
- (Optional but recommended) Plaid account
-
Install the
@rizefinance/cli
packagenpm i -g @rizefinance/cli
-
Create and run a new app
rize create my-project cd my-project docker-compose up
-
Check if Application is running at
http://localhost/api/health-check
- Run
npm adduser --scope=@rizefinance --registry=https://npm.pkg.github.com
- Input your GitHub Username.
- For the Password, input your GitHub Personal Access Token. Your token should have the following scopes/permissions:
repo
,read:packages
- Input the email address that you're using in GitHub.
- Run
npm config set @rizefinance:registry https://npm.pkg.github.com
to ensure the scope of the registry.
To confirm you should see the following lines when you run npm config list
@rizefinance:registry = "https://npm.pkg.github.com"
//npm.pkg.github.com/:_authToken = (protected)
--help
- Get information on how to properly run the CLI.--db
,--database
- Create a database for your app.--auth
,--authentication
- Setup the authentication provider for your app.
- Application
- It must have a front-end application (not Machine to Machine). Its Client ID will be the one that you should provide when creating the app using
rize create
. - The
Password
grant must be enabled for the front-end application (Advanced Settings > Grant Types > Password). Other grant types can also be used (customization of the actual frontend app might be needed).
- It must have a front-end application (not Machine to Machine). Its Client ID will be the one that you should provide when creating the app using
- APIs
- It must have a custom API. Its Identifier will be the one that you should provide as the Audience when creating the app using
rize create
.
- It must have a custom API. Its Identifier will be the one that you should provide as the Audience when creating the app using
- Settings
- Set API Authorization Settings > Default Directory to
Username-Password-Authentication
- Set API Authorization Settings > Default Directory to
- App clients
- Don't generate a client secret when creating an app client.
- Assign a domain name
- Under App integration, select Domain name. You can assign an Amazon Cognito domain, or use your own domain.
- Attributes
- Require
email
underWhich standard attributes are required?
- Require
- Message customizations
- Select
Link
forDo you want to customize your email verification messages?
- Select