Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cristianprochnow/supabase_connection_rn

⚡ React Native app for testing integration with Supabase.
https://github.com/cristianprochnow/supabase_connection_rn

react-native supabase typescript

Last synced: 12 days ago
JSON representation

⚡ React Native app for testing integration with Supabase.

Awesome Lists containing this project

README

        

# Supabase connection with React Native

## Getting Started

### `.env`

Create an `.env` file in project directory root with info for Supabase connection. So in this file, set data below.

```bash
# .env

API_URL=
API_KEY=
```

More details about this configuration can be found in [Supabase Docs](https://supabase.com/docs/guides/getting-started/quickstarts/reactjs).

### React Native

After this config, run commands below to run mobile project.

```bash
$ npm install # Install packages
$ npx react-native run-android # Run Android Project
```