Developing Edge Functions with Supabase
Get started with Edge Functions on the Supabase dashboard.
In this guide we'll cover how to create a basic Edge Function on the Supabase dashboard, and access it using the Supabase CLI.
Deploy from Dashboard
Go to your project > Edge Functions > Deploy a new function > Via Editor
This will scaffold a new function for you. You can choose from Templates some of the pre-defined functions for common use cases.
Modify the function as needed, name it, and click Deploy function
Your function is now active. Navigate to the function's details page, and click on the test button.
You can test your function by providing the expected HTTP method, headers, query parameters, and request body. You can also change the authorization token passed (e.g., anon key or a user key).
Access deployed functions via Supabase CLI
CLI not installed?
Check out the CLI Docs to learn how to install the Supabase CLI on your local machine.
Now that your function is deployed, you can access it from your local development environment. Here's how:
-
Link your project to your local environment.
You can find your project reference ID in the URL of your Supabase dashboard or in the project settings.
1supabase link --project-ref your-project-ref -
List all Functions in the linked Supabase project.
1supabase functions list -
Access the specific function you want to work on.
1supabase functions download function-name -
Make local edits to the function code as needed.
-
Run your function locally before redeploying.
1supabase functions serve function-name -
Redeploy when you're ready with your changes.
1supabase functions deploy function-name
Deploy via Assistant
You can also leverage the Supabase Assistant to help you write and deploy edge functions.
Go to your project > Edge Functions > Click on the Assistant icon to Create with Supabase Assistant
This brings up an assistant window with a pre-filled prompt for generating edge functions. Write up your Edge Function requirement, and let Supabase Assistant do the rest.
Click Deploy and the Assistant will automatically deploy your function.
This function requires an OpenAI API key. You can add the key in your Edge Functions secrets page, or ask Assistant for help.
- Navigate to your Edge Functions > Secrets page.
- Look for the option to add environment variables.
- Add a new environment variable with the key
OPENAI_API_KEY
and set its value to your actual OpenAI API key.
Once you've set this environment variable, your edge functions will be able to access the OPENAI_API_KEY securely without hardcoding it into the function code. This is a best practice for keeping sensitive information safe.
With your variable set, you can test by sending a request via the dashboard. Navigate to the function's details page, and click on the test button. Then provide a Request Body your function expects.
Editing functions from the Dashboard
Be careful: there is currently no version control for edits
The Dashboard's Edge Function editor currently does not support versioning or rollbacks. We recommend using it only for quick testing and prototypes. When you’re ready to go to production, store Edge Functions code in a source code repository (e.g., git) and deploy it using one of the CI integrations.
-
From the functions page, click on the function you want to edit. From the function page, click on the Code tab.
-
This opens up a code editor in the dashboard where you can see your deployed function's code.
-
Modify the code as needed, then click Deploy updates. This will overwrite the existing deployment with the newly edited function code.
Next steps
Check out the Local development guide for more details on working with Edge Functions.
Read on for some common development tips.