Bloq Account Setup
This tutorial will guide you through all the required steps to set up a Bloq account and start using our services.
Users require a Bloq Account in order to acccess Bloq services. A Bloq account is associated with an individual user. Organizational support will be provided in a future release.
npm i -g @bloq/cloud-cli
Once you install the CLI, you will have access to the global command
bcl
. You can run CLI with --version
flag to check that everything is working.$ bcl --version
@bloq/cloud-cli/2.3.2 darwin-x64 node-v8.12.0
Once you confirm the CLI is functioning, please see the Bloq Console Signup page to create your Bloq account.
Through the Bloq Console website, users can perform a variety Bloq Accounts operations, such as:
- Access and update account information and preferences.
- Manage payments and billing information.
- Manage Bloq Connect plan.
- Manage Bloq Nodes and node clusters.
TIP
Some of the steps outlined in later on, such as `Verify Account , may alternatively be carried out through the Bloq Console.
In order to verfy your account, check your email and have the confirmation email at hand. Run the CLI
verify
command, which will prompt you for your Email Addressand Verfication Token contained in the email.bcl verify
? Enter your email address or account id [email protected]
? Enter your verification token xxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
✔ The account [email protected] has been validated
ℹ You can now start a new session running the command: bcl login -u [email protected]
When your account is successfully created, you can start using Bloq services, manage your user information and generate client keys using the CLI. To start using Bloq services, start a new session using the
login
command:bcl login -u [email protected]
ℹ Account saved. Next time you only need -p flag (--password) to login.
ℹ Login with user [email protected]
? Enter your password xxxxxxxx
✔ Login success. Your session expires in 12h.
When you choose your password, keep in mind that there are some special characters that are handled as command line modifiers, depending on your operating system. For example, if your password includes hyphens (-) or exclamation marks (!) and you are under a Linux-ish environment, the
--password
value must be surrounded by quotation marks (') in order to avoid the default shell behavior for these symbols. On Windows environments, such behavior could be present on other symbols, or not be present at all. Please refer to your operating system documentation to check which characters are used as command line modifiers, and how to escape them correctly if you want to use them on your password at the command line.TIP
- Each CLI session expires in 12h. After that, you will need to re-login to continue using services.
- You can run the
login
command using your Email Address or Bloq Account ID. - Most commands allow you to add arguments using flags. If you miss a required flag, you will be prompted to enter the argument manually.
- Run
bcl help
to list available commands and their associated options.
Last modified 2mo ago