Skip to content

Files

Latest commit

2d8f002 · May 10, 2016

History

History

react-native-gallery

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
May 10, 2016
Mar 18, 2016
May 10, 2016
Mar 18, 2016
Mar 18, 2016
Mar 18, 2016
Mar 18, 2016
Mar 18, 2016
Mar 18, 2016
Mar 18, 2016
Mar 18, 2016
Mar 18, 2016
May 10, 2016
Mar 30, 2016
Mar 18, 2016
Mar 18, 2016
Mar 18, 2016
Mar 18, 2016
Mar 18, 2016
May 10, 2016

Reindex ❤️ React Native Example App

Instagram clone. A multi-user gallery app, with file uploads.

Currently only Android, iOS is coming soon.

Features:

  • Relay and Reindex
  • Authentication through Auth0
  • File upload via Uploadcare
  • Infinite scrolling

Screenshots, yay!

Login Picture Stream Sidebar Grid

Running

  • npm install -g react-native-cli reindex-cli
  • npm install
  • Set up 3rd party service configuration in config.js (Reindex, Auth0, Uploadcare)
  • Login to Reindex reindex login
  • Push Reindex schema
reindex schema-push
  • Get Relay schema
reindex schema-relay scripts/RelaySchema.json
  • Add Auth0 authentication provider to Reindex, eg with GraphiQL (reindex graphiql)
mutation {
  createReindexAuthenticationProvider(input: {
    type: auth0,
    isEnabled: true,
    domain: "YOUR-AUTH0-DOMAIN.auth0.com",
    clientId: "YOUR-AUTH0-CLIENT-ID",
    clientSecret: "YOUR-AUTH0-SECRET",
  }) {
    id
  }
}
  • Run and enjoy
react-native run-android