npm-packages/docs/docs/production/hosting/netlify.mdx
Hosting your Convex app on Netlify allows you to automatically re-deploy both your backend and your frontend whenever you push your code.
This guide assumes you already have a working React app with Convex. If not follow the Convex React Quickstart first. Then:
<StepByStep> <Step title="Create a Netlify account"> If you haven't done so, create a [Netlify](https://netlify.com) account. This is free for small projects and should take less than a minute to set up.<></>
<div className="screenshot-border">

</div>
If your project lives in a subdirectory of your repository you'll
also need to change _Base directory_ in Netlify accordingly.
<div className="screenshot-border">

</div>
In Netlify, click _Add environment variables_ and _New variable_.
Create an environment variable `CONVEX_DEPLOY_KEY` and paste
in your deploy key.
<div className="screenshot-border">

</div>
<></>
Netlify will automatically publish your site to a URL
https://<site-name>.netlify.app listed at the top of the site overview page.
Every time you push to your git repository, Netlify will automatically deploy
your Convex functions and publish your site changes.
In Netlify, we overrode the Build Command to be
npx convex deploy --cmd 'npm run build'.
npx convex deploy will read CONVEX_DEPLOY_KEY from the environment and use
it to set the CONVEX_URL (or similarly named) environment variable to point to
your production deployment.
Your frontend framework of choice invoked by npm run build will read the
CONVEX_URL environment variable and point your deployed site (via
ConvexReactClient) at your production deployment.
Finally, npx convex deploy will push your Convex functions to your production
deployment.
Now, your production deployment has your newest functions and your app is configured to connect to it.
You can use --cmd-url-env-var-name to customize the variable name used by your
frontend code if the deploy command cannot infer it, like
npx convex deploy --cmd-url-env-var-name CUSTOM_CONVEX_URL --cmd 'npm run build'
You will want to configure your authentication provider (Clerk,
Auth0 or other) to accept your production <site-name>.netlify.app URL.
Netlify's Deploy Previews allow you to preview changes to your app before they're merged in. In order to preview both changes to frontend code and Convex functions, you can set up Convex preview deployments.
This will create a fresh Convex backend for each preview and leave your production and development deployments unaffected.
This assumes you have already followed the steps in Deploying to Netlify above.
<StepByStep> <Step title="Set up the CONVEX_DEPLOY_KEY environment variable"> On your [Convex Dashboard](https://dashboard.convex.dev/) go to your project's _Settings_ page. Click the _Generate Preview Deploy Key_ button to generate a **Preview** deploy key. Then click the copy button to copy the key.In Netlify, click _Site configuration_ > _Environment variables_. Edit your existing `CONVEX_DEPLOY_KEY` environment variable.
Select _Different value for each deploy context_ and paste the key under _Deploy Previews_.
<div className="screenshot-border">

</div>
npx convex deploy --cmd 'npm run build' --preview-run 'functionName'
You can find the Convex deployment for your branch in the Convex dashboard.
<div className="screenshot-border">

</div>
For Deploy Previews, npx convex deploy will read CONVEX_DEPLOY_KEY from the
environment, and use it to create a Convex deployment associated with the Git
branch name for the Deploy Preview. It will set the CONVEX_URL (or similarly
named) environment variable to point to the new Convex deployment.
Your frontend framework of choice invoked by npm run build will read the
CONVEX_URL environment variable and point your deployed site (via
ConvexReactClient) at the Convex preview deployment.
Finally, npx convex deploy will push your Convex functions to the preview
deployment and run the --preview-run function (if provided). This deployment
has separate functions, data, crons and all other configuration from any other
deployments.
npx convex deploy will infer the Git branch name for Vercel, Netlify, GitHub,
and GitLab environments, but the --preview-create option can be used to
customize the name associated with the newly created deployment.
Production deployments will work exactly the same as before.