Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/cristianprochnow/supabase_connection_rn
- Owner: cristianprochnow
- License: mit
- Created: 2023-09-08T23:03:55.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-21T03:06:30.000Z (over 1 year ago)
- Last Synced: 2024-12-07T22:10:49.441Z (2 months ago)
- Topics: react-native, supabase, typescript
- Language: Java
- Homepage:
- Size: 647 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
# .envAPI_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
```