[Once you install Forge CLI](https://forge.laravel.com/docs/1.0/accounts/cli.html#installation), you may run `forge` from the command-line to get started:

The first release (v1.0) of the Forge CLI contains around thirty commands, including initiating deployments, viewing application logs, configuring SSH key authentication, and more. In this article, we are going to highlight some of these new commands. And, of course, you may refer to the **[official documentation](https://forge.laravel.com/docs/1.0/accounts/cli.html)** for more details.
### Initiating Deployments
One of the primary features of Laravel Forge is deployments, and now those may be initiated via the Forge CLI using the `deploy` command:

### Viewing Application Logs
You may also view site logs directly from the command-line. To do so, use the `site:logs` command:

### Configuring SSH Key Authentication
To configure SSH key authentication, you may use the `ssh:configure` command:

After you have configured SSH key authentication, you may use the `ssh` command to quickly create a secure connection to your server:

### Connecting To A Database Locally
You may even use the `database:shell` command to quickly access a command-line shell that lets you interact with your database:

—
Be sure to check out the [official Forge CLI documentation](https://forge.laravel.com/docs/1.0/accounts/cli.html) for more details. There you will find a listing of all of the available commands and options. We hope you enjoy this new command-line tool!
If you don’t have a Forge account, now is a great time to **[sign up](https://forge.laravel.com/auth/register)**! Forge allows you to painlessly create and manage PHP servers which include MySQL, Redis, Memcached, database backups, and everything else you need to run robust, modern Laravel applications.
The post Forge: Introducing The Forge CLI appeared first on Phpblogs.