A Textual User Interface (TUI) application to manage your Vercel projects. Easily view, pause, and unpause your Vercel projects directly from your terminal.
- Authentication: Secure login using Vercel Personal Access Tokens.
- Dashboard: View all your Vercel projects along with their framework and status.
- Control: Pause or unpause projects with a single keypress.
- Python 3.8+
You can run this application locally by cloning the repository.
-
Clone the repository:
git clone https://github.com/yourusername/vercel-pause.git cd vercel-pause -
Create a virtual environment and activate it:
python3 -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
-
Install the package:
pip install -e .
After installation, you can launch the application by running:
vercel-pauseOr you can run the CLI script directly:
python -m vercel_pause.cliLogin Screen:
Escape: Quit application
Dashboard Screen:
R: Refresh projects listP: Pause selected projectU: Unpause selected projectQ: Quit application
MIT