Skip to content

Latest commit

 

History

History
executable file
·
47 lines (31 loc) · 1.63 KB

DEPLOYMENT.md

File metadata and controls

executable file
·
47 lines (31 loc) · 1.63 KB

Deployment

Below you'll find instructions on how to deploy with Vercel.

Overview

Getting Started
Environment Variables
Deployment Types

Getting Started

Vercel is a hosting platform for static sites and serverless functions. It's used to host our Storybook and Next.js applications, as well our serverless API.

The Vercel for GitHub integration is used to deploy our applications by pushing to GitHub. Vercel also provides support for preview and production environment deployments.

Environment Variables

Vercel supports adding environment variables for Development, Preview, and Production environments. ​Vercel also provides a set of variables that can be automatically populated by the system.

For more information, see Environment Variables from the Vercel docs.

Deployment Types

Preview

Preview deployments are the default for all deployments. Each time you push to a branch or make a deployment using the vercel command, this is a preview deployment.

Production

Production deployments are made in two different circumstances. Each time you merge to the Production Branch (commonly main) or make a deployment using the vercel --prod command, this is a production deployment.

For more information, visit Deployment Types from the Vercel docs.