A Single Page App created with React, Redux, JWT Authentication, and the Stripe API.
- What is Stripe?
- Login Credentials
- Live Demo
- Dependencies
- Requirements
- Installation
- Running Locally
- Deploying to Heroku
- Contributors
Stripe is a service that allows users to accept payments online, specifically developers. With the Stripe application, users can keep track of payments, search past payments, create recurring charges, and keep track of customers.
- Username:
sampleAuthUser@gmail.com| Password:a - Username:
sampleAdmin@gmail.com| Password:abc123
Currently deployed to Heroku!
Step 1: Clone Repo
git clone https://github.com/briantam23/grace-shopper.git` # or clone your own forkStep 2: Create Database
createdb grace-shopperStep 3: Install node_modules
npm install # or yarn installnpm run start:devThe npm run start:dev command will run 2 processes:
- the
webpackprocess (in watch mode) to build your client-side Javascript files - the Node process for your server with
nodemon
Your app should now be running on localhost:3000.
Make sure you have the Heroku CLI installed.
heroku create
git push heroku master
heroku open
Alternatively, you can deploy your own copy of the app using the web-based flow:


