DocumentationAuthenticationRegistering an Account

Registering an Account

Create a new Rollout account to start deploying your static sites.

Command

rollout register

Interactive Registration

When you run the command without options, you’ll be prompted to enter your information:

rollout register

You will be prompted for:

  • Full name: Your display name
  • Email: Your email address (must be valid)
  • Password: Secure password (minimum 8 characters)
  • Confirm password: Password confirmation

Example

$ rollout register
Full name: John Doe
Email: john.doe@example.com
Password: ********
Confirm password: ********
 
Creating account...
 Account created successfully!
Welcome, John Doe!
You are now logged in and ready to deploy.

Command Line Options

You can also provide information directly via command line options:

rollout register --name "John Doe" --email "john@example.com" --password "mypassword"

Options

  • -n, --name <name> - Your full name
  • -e, --email <email> - Your email address
  • -p, --password <password> - Your password

What Happens Next

After successful registration:

  1. Your account is created
  2. You are automatically logged in
  3. Your authentication token is saved locally
  4. You can immediately start deploying sites

Troubleshooting

Email Already Exists

If you get an “Email already exists” error, use the login command instead:

rollout login

Password Requirements

Your password must be at least 8 characters long. If it’s too short, you’ll see:

Password must be at least 8 characters

Passwords Don’t Match

If the password confirmation doesn’t match, you’ll see:

Passwords do not match