Registering an Account
Create a new Rollout account to start deploying your static sites.
Command
rollout registerInteractive Registration
When you run the command without options, you’ll be prompted to enter your information:
rollout registerYou 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:
- Your account is created
- You are automatically logged in
- Your authentication token is saved locally
- You can immediately start deploying sites
Troubleshooting
Email Already Exists
If you get an “Email already exists” error, use the login command instead:
rollout loginPassword Requirements
Your password must be at least 8 characters long. If it’s too short, you’ll see:
Password must be at least 8 charactersPasswords Don’t Match
If the password confirmation doesn’t match, you’ll see:
Passwords do not match