This is a simple CRUD application built with React Native for maintaining users. This project uses a Hasura GraphQL API to interact with a PostgreSQL database that's hosted on Heroku.
In order to run this application you need to install Expo.
You will need to create AppConfig.tsx
with the following:
export const GRAPHQL_URL = '<your_hasura_graphql_url>'
npm start
expo build # build app for both platforms
expo build:android # build app for android
expo build:ios # build app for ios
expo export:web # export for web
The PostgreSQL database contains only a single schema with one table - users
.
users
Field | Type | Optional | PK |
---|---|---|---|
id | int | NO | YES |
first_name | text | NO | NO |
last_name | text | NO | NO |
text | NO | NO |
Created by @scarnett
Copyright © 2022 Scott Carnett. Licensed under the MIT License (MIT)