|
1 | 1 | # Artisan CLI |
2 | 2 |
|
3 | | -- [Introduction](#introduction) |
4 | | -- [Usage](#usage) |
| 3 | +- [Introdução](#introduction) |
| 4 | +- [Usagem](#usage) |
5 | 5 |
|
6 | 6 | <a name="introduction"></a> |
7 | | -## Introduction |
| 7 | +## Introdução |
8 | 8 |
|
9 | 9 | Artisan is the name of the command-line interface included with Laravel. It provides a number of helpful commands for your use while developing your application. It is driven by the powerful Symfony Console component. |
10 | 10 |
|
| 11 | +Artisan é o nome da interface de linha de comando incluída no Laravel. Fornece um número de comandos úteis para seu uso durante o desenvolvimento de sua aplicação. É conduzido pelo poderoso componente Symfony Console. |
| 12 | + |
11 | 13 | <a name="usage"></a> |
12 | | -## Usage |
| 14 | +## Usagem |
13 | 15 |
|
14 | | -To view a list of all available Artisan commands, you may use the `list` command: |
| 16 | +Para ver a lista com todos os comandos do Artisan, você pode usar o comando `list`: |
15 | 17 |
|
16 | | -**Listing All Available Commands** |
| 18 | +**Listando todos os comandos disponíveis** |
17 | 19 |
|
18 | 20 | php artisan list |
19 | 21 |
|
20 | | -Every command also includes a "help" screen which displays and describes the command's available arguments and options. To view a help screen, simply precede the name of the command with `help`: |
| 22 | +Todo comando inclui uma tela de ajuda que exibe e descreve os argumentos e opções disponíveis deste comando. Para exibir a tela de ajuda, simplesmente preceda o nome do comando com `help`: |
21 | 23 |
|
22 | | -**Viewing The Help Screen For A Command** |
| 24 | +**Exibindo a tela de ajuda para um comando** |
23 | 25 |
|
24 | 26 | php artisan help migrate |
25 | 27 |
|
26 | | -You may specify the configuration environment that should be used while running a command using the `--env` switch: |
| 28 | +Você pode especificar o ambiente de configuração que devem ser utilizados durante a execução de um comando usando a chave `--env`: |
27 | 29 |
|
28 | | -**Specifying The Configuration Environment** |
| 30 | +**Especificando o ambiente de configuração** |
29 | 31 |
|
30 | 32 | php artisan migrate --env=local |
31 | 33 |
|
32 | | -You may also view the current version of your Laravel installation using the `--version` option: |
| 34 | +Você pode ver a versão atual da sua instalação do Laravel usando a opção `--version`: |
33 | 35 |
|
34 | | -**Displaying Your Current Laravel Version** |
| 36 | +**Exibindo sua versão atual Laravel** |
35 | 37 |
|
36 | 38 | php artisan --version |
0 commit comments