Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@ App built on React with the goal to inspire first time open source contributors

# Getting Started
* Checkout the repository onto your local machine
* Sign up to [Unsplash API](https://unsplash.com/documentation#creating-a-developer-account) to get access to keys
* Create a secret.js file in the root directory
* Use this template in the secret.js file:
```
const unsplashKeys = {
accessKey: '',
secretKey: '',
};
export { unsplashKeys };
```
* Copy and paste your access and secret keys into the empty strings in the file
* Run `yarn install` to add needed dependencies
* Run `yarn watch` to get the app running locally

Expand Down