This is an extended version of create-t3-turbo implementing authentication using Supabase Auth on both the web and mobile applications.
iOS: One of the requirements for Apple's review process requires you to implement native Sign in with Apple
if you're providing any other third party authentication method. Read more in Section 4.8 - Design: Sign in with Apple.
We have preconfigured this for you which you can find here. All you need to do is to enable the Apple Provider in your Supabase dashboard and fill in your information.
We currently only supports
Sign in with Apple
- support for more providers on mobile are being worked on!
To get it running, follow the steps below:
# Install dependencies
pnpm i
# Configure environment variables.
# There is an `.env.example` in the root directory you can use for reference
cp .env.example .env
# Push the Prisma schema to your database
# Can't run with Turbo as we need an interactive shell (see below why)
# Consequent runs you may simply do `pnpm db:push` from root.
pnpm -F db db:push
When running the last command,
pnpm -F db db:push
, you'll get a warning for adding a unique constraint on theschema-migrations
model. This is because Supabase doesn't include this by default, but Prisma requires each model to have at least one unique column. You can safely accept this warning and add the unique constraint on the table.
- Go to the Supabase dashboard and create a new project.
- Under project settings, retrieve the environment variables
reference id
,project url
&anon public key
and paste them into .env and apps/expo/.env in the necessary places. You'll also need the database password you set when creating the project. - Under
Auth
, configure any auth provider(s) of your choice. This repo is using Github for Web and Apple for Mobile.
By default, Supabase exposes the public
schema to the PostgREST API to allow the supabase-js
client query the database directly from the client. However, since we route all our requests through the Next.js application (through tRPC), we don't want our client to have this access. To disable this, execute the following SQL query in the SQL Editor on your Supabase dashboard:
REVOKE USAGE ON SCHEMA public FROM anon, authenticated;
Note: This means you also don't need to enable row-level security (RLS) on your database if you don't want to.
- Make sure you have XCode and XCommand Line Tools installed as shown on expo docs.
NOTE: If you just installed XCode, or if you have updated it, you need to open the simulator manually once. Run
npx expo start
in the root dir, and then enterI
to launch Expo Go. After the manual launch, you can runpnpm dev
in the root directory.
+ "dev": "expo start --ios",
- Run
pnpm dev
at the project root folder.
TIP: It might be easier to run each app in separate terminal windows so you get the logs from each app separately. This is also required if you want your terminals to be interactive, e.g. to access the Expo QR code. You can run
pnpm --filter expo dev
andpnpm --filter nextjs dev
to run each app in a separate terminal window.
- Install Android Studio tools as shown on expo docs.
- Change the
dev
script atapps/expo/package.json
to open the Android emulator.
+ "dev": "expo start --android",
- Run
pnpm dev
at the project root folder.
- For more useful information on how to deploy this stack, refer to t3-oss/create-t3-turbo.
- Supabase Documentation
- This stack originates from create-t3-app.
- A blog post where I wrote how to migrate a T3 app into this.