A tool to checkout multiple vercel accounts via the official CLI
Vercel Account Manager (VAM) is a CLI tool built to easily manage multiple Vercel accounts via the official Vercel CLI. With VAM, you can add, list, remove, and switch between Vercel accounts, making it perfect for developers juggling multiple accounts.
Pre-built binaries for Linux, macOS, and Windows are available on the Releases page.
If you prefer to build the tool from source, follow these steps:
git clone https://github.com/owbird/vercel-account-manager.git
cd vercel-account-manager
go build -o vam
Here’s how you can use the Vercel Account Manager (VAM):
To add a new Vercel account, use the create
command.
vam create [args]
The args will be forwarded to the vercel CLI for login.
To see all the Vercel accounts you’ve added, use the ls
command.
vam ls
To remove an account, use the rm
command followed by the account name.
vam rm <account_name>
To switch between accounts, use the checkout
command followed by the account name.
vam checkout <account_name>
| Command | Description |
|---------------|---------------------------------------|
| vam create
| Add a new Vercel account |
| vam ls
| List all added accounts |
| vam rm
| Remove a specific account |
| vam checkout
| Switch to a different Vercel account |
Feel free to open issues or submit pull requests!