Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/prince9871/deployment_command_menu
- Owner: prince9871
- Created: 2024-09-10T10:46:20.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-09-10T10:53:03.000Z (5 months ago)
- Last Synced: 2024-11-12T16:08:49.240Z (3 months ago)
- Topics: netlify-deployment, vercel-deployment
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```