Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jaronoff97/feedshare-public
This is a public version of Feedshare with redacted keys; there is no git history so as to keep things anonymous.
https://github.com/jaronoff97/feedshare-public
Last synced: 8 days ago
JSON representation
This is a public version of Feedshare with redacted keys; there is no git history so as to keep things anonymous.
- Host: GitHub
- URL: https://github.com/jaronoff97/feedshare-public
- Owner: jaronoff97
- Created: 2016-12-30T05:19:40.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-30T05:22:35.000Z (almost 8 years ago)
- Last Synced: 2024-10-28T15:48:47.262Z (about 2 months ago)
- Language: Objective-C
- Size: 26.9 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Feedshare
A simple Feedshare list app using React Native, Redux, Firebase, and Async Storage for offline data. It works on both iOS and Android.
## Install
Built and tested with:
* OS X / macOS
* Node 6.2.2 / npm 3.9.5 (but other recent versions likely work)
* Xcode 7.3
* Android SDKA [Firebase](https://firebase.google.com) account is also needed. The security rules for the database must be set to public, since this app doesn't implement authentication. In the [Firebase Console](https://firebase.google.com/console/) under the Database section, Rules tab, change the rules to:
```javascript
{
"rules": {
".read": true,
".write": true
}
}
```Run:
```bash
git clone https://github.com/jaronoff97/Feedshare-Public.git Feedshare
cd Feedshare
npm install
```Update config.js with your Firebase app credentials.
## Develop
Follow the [React Native Getting Started](https://facebook.github.io/react-native/docs/getting-started.html) guide.
## Build and install on an iOS device
* In the Xcode menu, go to Product -> Scheme -> Edit Scheme..., and under Run change the Build Configuration to Release.
* Choose your device in Xcode and run it on there.To get back to development mode, just change the Build Configuration back to Debug.
## Build and install on an Android device
Follow the [React Native APK signing instructions](https://facebook.github.io/react-native/docs/signed-apk-android.html).
## Credits
Feedshare bag icon by [Claire Jones from the Noun Project](https://thenounproject.com/hivernoir)