pluv CLI

Learn how to use the pluv CLI to create new projects.

When you unlock templates on ship.pluv.io, you will be given an invitation to a GitHub repository for that template, allowing you to clone the repo, open issues and ask questions.

ship.pluv.io also provides a CLI with which you can also use to bootstrap your projects like you would with the create-next-app CLI.

Usage

npm install pluv -g

After installing the CLI, you can create your new project by running the following commands:

Bash terminal
# Login to your ship.pluv.io account
pluv ship login

# Verify that you are logged in
pluv ship whoami

# List all of the templates you have access to (i.e. unlocked)
pluv ship list

# Create a new project from a template
# Options are:
# - vercel-monorepo
# - cloudflare-monorepo
# - cli-monorepo
# - resume
pluv ship create vercel-monorepo

When creating a new project with the CLI, you will be prompted to enter a name for your project. The project will be created in a new directory with the same name as your project (relative to the directory you are running these commands from).

On this page