Skip to main content

Deployment Overview

Deployment Platform

The application is deployed on Vercel with automated deployments configured for specific branches.

Deployment Branches

Automatic deployments are enabled for:

  • main - Production environment
  • dev - Development environment
  • staging - Staging environment

Other branches: Automatic deployments are disabled

Deployment Configuration

Location: vercel.json

{
"git": {
"deploymentEnabled": {
"main": true,
"dev": true,
"staging": true,
"*": false
}
}
}