0% found this document useful (0 votes)
106 views1 page

Deployment Guide Render Vercel

Uploaded by

arunarun11041
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
106 views1 page

Deployment Guide Render Vercel

Uploaded by

arunarun11041
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Deployment using Render and Vercel with Git Commits

This document provides a detailed guide on deploying applications using Render and Vercel
platforms with Git commits. The flowchart and steps ensure a smooth deployment process.

Flowchart Description
Below is the high-level overview of the deployment process:
1. **Code Development**: Write or update the application code.
2. **Version Control**: Commit and push changes to the Git repository.
3. **Deployment Trigger**: The deployment is triggered automatically by Render or Vercel.
4. **Build & Deploy**: The platforms pull the latest code, build the app, and deploy it.
5. **Live Application**: The updated application is available on a live domain.

Steps for Render Deployment


1. **Set up your Git repository**:
Ensure your code is pushed to a remote Git repository (e.g., GitHub or GitLab).
2. **Connect to Render**:
- Sign in to Render (https://render.com).
- Click on 'New' → 'Web Service'.
- Select the Git repository containing your application.
3. **Configure Build Settings**:
- Choose the branch to deploy (e.g., `main` or `master`).
- Set up build commands (e.g., `npm install` and `npm start`).
4. **Deploy Automatically**:
Enable auto-deploy on new commits for continuous deployment.
5. **Monitor Deployment**:
View deployment logs in the Render dashboard.

Steps for Vercel Deployment


1. **Set up your Git repository**:
Ensure your code is pushed to a remote Git repository (e.g., GitHub or GitLab).
2. **Connect to Vercel**:
- Sign in to Vercel (https://vercel.com).
- Click on 'New Project'.
- Import your repository.
3. **Configure Build Settings**:
- Select the framework or set up custom build commands (e.g., `npm run build`).
- Choose the branch to deploy.
4. **Deploy Automatically**:
Enable auto-deploy for continuous deployment.
5. **Monitor Deployment**:
Use the Vercel dashboard to monitor deployment logs and live app status.

You might also like