hooptie45 / ParseStore

A sample store app with Stripe and Parse integration

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ParseStore

Quickstart

Seed sample products on Parse

  1. Create a new app on Parse named ParseStore
  2. Add the new Parse Application ID and REST API key to Install/install.sh (Very important that you use the REST API key here)
  3. Using Terminal, cd into the provided Install folder, and run "sh install.sh"
  4. Checkpoint: via the data browser, verify a class named "Item" is created on the Parse app. There should be 3 products in this class: T-shirt, hoodie, and mug. There should be an image associated with each product.

Get your iOS app up and running

  1. Add the Parse Application ID and Parse Client API key to /Store/Resources/Development.xcconfig and /Store/Resources/Distribution.xcconfig
  2. In XCode, choose Clean from the Product menu.
  3. Checkpoint: run your app in the simulator; you should see the products via your app. You cannot buy yet.

Get your Android app up and running

  1. Clone the repository and import the ParseStoreandroid project from the ParseStore-Android folder.
  2. Add your Parse application id and client key in Application.java.
  3. Checkpoint: run your app in the simulator; you should see the products via your app. You cannot buy yet.

Set up your Stripe account

  1. Create a Stripe account.
  2. (For iOS) Add Stripe test publishable key to /Store/Resources/Development.xcconfig and /Store/Resources/Distribution.xcconfig
  3. (For Android) Add Stripe test publishable key in CheckoutActivity.java.
  4. Add Stripe test secret key to /CloudTest/cloud/main.js
  5. Install command line tool
  6. Using Terminal, cd into the provided CloudTest folder, and run "parse add", then select the ParseStore app you set up
  7. run "parse deploy"
  8. In XCode, choose Clean from the Product menu.
  9. Checkpoint: verify via the data browser that the cloud code is properly deployed.
  10. Checkpoint: run your app in the simulator; test buying using the Stripe test credit card. It should work.

Set up your mail delivery system (optional)

  1. Create a MailGun account (for sending emails when purchases are made).
  2. Add Mailgun, myDomainName and myApiKey key to /CloudTest/cloud/main.js
  3. Deploy the updated code with "parse deploy"
  4. Checkpoint: run your app in the simulator; enter your real email address while making the purchase. It should send you an email.

You are done! Congratulations!

About

A sample store app with Stripe and Parse integration

License:Creative Commons Zero v1.0 Universal


Languages

Language:Objective-C 53.1%Language:Java 36.5%Language:JavaScript 7.4%Language:Shell 2.8%Language:Ruby 0.2%