Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/prince9871/deployment_command_menu

It offers essential commands for deploying web applications to Netlify and Vercel. It includes build and deployment instructions, with specific details for Node.js projects on Vercel.
https://github.com/prince9871/deployment_command_menu

netlify-deployment vercel-deployment

Last synced: 18 days ago
JSON representation

It offers essential commands for deploying web applications to Netlify and Vercel. It includes build and deployment instructions, with specific details for Node.js projects on Vercel.

Awesome Lists containing this project

README

        

# 🚀 Deployment Master Commands

This document contains the essential commands to deploy your project using **Netlify** and **Vercel**.

## Netlify Deployment 🌐

Before deploying to Netlify, create a production build of your project using:

```
npm run build
```

Then, deploy your project to Netlify in production mode with:

```
netlify deploy --prod
```

## Vercel Deployment 📦

If you are deploying a Node.js project to Vercel, make sure you have a `.vercel` file in your project directory.

To deploy your project to Vercel in production mode, use this command:

```
vercel --prod
```

If you are not logged in to Vercel, you can log in using:

```
vercel login
```