Skip to content

zarcode/unsplashapp

Repository files navigation

Unofficial unsplash.com Mobile App

License: MIT CircleCI Coverage Status

Description:

React Native app for browsing Unsplash photos.

Android build:

Get it on google play

How to run localy:

Download or clone master branch. Make /src/config.json file and inside of it place your Unsplash app client ID (Unsplash Docs), like this:

{
  "keys": [ "ADD_YOUR_CLIENT_ID_HERE" ]
}

In the root project directory run:

npm install
react-native run-ios

This runs the app on iOS simulator (if you have one). You can run it also on android of course.

Contributing:

Before making PR, run:

npm run prettier

to make sure code is pretty and respects eslint configuration.

Also, make sure eslint, flow checks and tests are passing:

npm run eslint
npm run flow-check
npm test