Supabase needs a few settings to be configured in their Dashboard to work correctly.
This guide will walk you through the steps to get your Supabase authentication setup in your Production environment. The dev environment does not require any configuration.
Skipping this step will result in your users not being able to login or sign up.
Authentication URLs
The first thing you need to do is to set the authentication URLs in the Supabase Dashboard. These URLs are used to redirect users to the correct page after they have logged in or signed up.
- Go to the Supabase Dashboard.
- Click on the project you want to use.
- Go to the Authentication tab.
- Click on URL Configuration.
- Add your Site URL to the Site URL field. This is the URL of your MakerKit site (e.g.
https://my-site.com
). - Add your Redirect URLs to the Redirect URLs field. This is the URL of your MakerKit site with
/auth/callback
appended to it (e.g.https://my-site.com/auth/callback
).
Troubleshooting
If you are having issues with authentication, ensure that the Site URL and Redirect URLs are correct. If you are using a custom domain, ensure that you are using the correct domain in the Site URL and Redirect URLs.
NB: if your domain includes "www", ensure you include it in the Site URL and Redirect URLs. If your domain does not include "www", ensure you do not include it in the Site URL and Redirect URLs. If these do not match, your users will not be able to login.
If something is still not working, please open a support ticket with any useful information (such as server logs).
Custom SMTP (optional, but recommended)
If you want to send emails from your own domain, you can configure your SMTP settings in the Supabase Dashboard.
This is optional, but recommended if you want to send emails from your own domain.
- Go to the Supabase Dashboard.
- Click on the project you want to use.
- Go to the Project Settings tab.
- Click on Auth.
- Tweak the
SMTP Settings
settings to your liking according to your provider's documentation.