An experimental feed app built with react-native.
These instructions will get you up and running.๐
You'll need a running๐ postgresql database Check this awesome guide
Create the database
createdb feed
psql feed < database.sql
Install everything. (You should try yarn)
npm install -g postgraphql
npm install
Ruuun : ๐๐๐
postgraphql -c postgres://localhost:5432/feed --watch
react-native run-ios
#or
react-native run-android
Image upload won't work out of the box (the body parser of the node.js server has a default size limit of 100kb
), you'll need to change that:
- Find where postgraphql was installed :
npm bin -g
cd to the given location
#you'll find a symlink to postgraphql
cd to the original folder
- Change
src/postgraphql/http/createPostGraphQLHttpRequestHandler.js
and includelimit: '50mb'
in thebodyparser
options. Check this
- react-native
- apollo-client - The awesome graphql client
- graphql
- postgresql
- postgraphql - The amazing Graphql API creator.
This project is licensed under the MIT License - see the LICENSE.md file for details