Quick Tips on How to Use now

A couple of quick tips to deal with Zeit's now platform.

# Install the now CLI.
npm install -g now

# Login to the right user account yours/teams.
# TIP: This sends an email that you need to verify and bam you're in.
now login email@address.tld

# Check which account you're logged in with.
# TIP: Should list your main account's username.
now whoami

# Switch to the right team once you are logged in.
now switch cloudinary-devrel

# List all the domains added to your/team's account.
now domains ls

# Add a new now domain.
# TIP: You need to add DNS TXT and NS values and then verify.
now domains add <domain>

# Verify the domain after adding required nameservers/TXT DNS values.
now domains verify <domain>

# Delete a now domain.
now domains rm <domain>