MQL5-Google-Onedrive/docs/Vercel_CLI_setup.md
google-labs-jules[bot] 887b8b73e9 feat: install Vercel CLI and update setup documentation
- Installed Vercel CLI v50.13.2 via npm.
- Created docs/Vercel_CLI_setup.md with installation and usage guides.
- Updated setup.sh to track Vercel CLI status and show documentation path.
2026-02-08 17:30:10 +00:00

53 lines
854 B
Markdown

# Vercel CLI Setup
## Installation
The Vercel CLI is available for Windows, macOS, and Linux.
### Via NPM (Recommended)
You can install the Vercel CLI using [npm](https://www.npmjs.com/).
```shell
npm install -g vercel
```
### macOS (Via Homebrew)
If you have [Homebrew](https://brew.sh/) installed, you can use it to install the Vercel CLI.
```shell
brew install vercel-cli
```
### Linux
Using npm is the recommended way for Linux. Ensure you have Node.js and npm installed.
```shell
npm install -g vercel
```
## Authentication
After installing the Vercel CLI, you need to authenticate with your Vercel account.
```shell
vercel login
```
This command will guide you through the authentication process in your browser or via email.
## Usage
To deploy a project:
```shell
vercel
```
To deploy to production:
```shell
vercel --prod
```