Built on top of Stripe Connect Express
You can try the web app live on rocketrides.io.
This purpose of this repository is to onboard influencers to get paid for content:
- Web server in Node.js to onboard influencers on the web and get them paid
This uses Connect Express accounts to get influencers paid. We are using Stripe Express for a quick and easy interaction with Stripe.
Using Stripe gives us authenticity with influencers and allows Stripe to handle all of the data security side.
This platform also uses the Stripe API to create payments for influencers.
Tribe has a stripe account, ask Nick for details.
You'll need to have Node.js >= 7.x and MongoDB installed to run this app.
Install dependencies using npm (or yarn):
cd server
npm install
Make sure MongoDB is running. If you're using Homebrew on macOS:
# Install once
brew tap mongodb/brew
brew install mongodb-community
# Start
brew services start mongodb-community
Run the app:
npm start
Go to http://localhost:3000 in your browser to start using the app.
- Forked From: Stripe Example