forked from hechoendrupal/drupal-console-book
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[hechoendrupal#222] translated project.
- Loading branch information
1 parent
9204514
commit 0396088
Showing
1 changed file
with
17 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,28 @@ | ||
# Using the project | ||
# Как пользоваться проектом | ||
|
||
Drupal Console provides two types of commands, `stand alone` and `container aware` commands. | ||
Команды Drupal Console деляться на два типа: `обособленные` и `зависимые`. | ||
|
||
**Stand alone commands:** | ||
These commands can run outside of a Drupal 8 site root. | ||
**Обособленные команды:** | ||
|
||
Обособленные команды не зависят от наличия установленного Drupal 8 приложения. | ||
|
||
**Container aware commands:** | ||
These commands must be run within a Drupal 8 site root. | ||
**Зависимые команды:** | ||
|
||
Зависимые команды можно запустить только из дериктории, где установлено Drupal 8 приложение. | ||
|
||
### Запуск команды из любой директории | ||
|
||
Команду Drupal Console можно запустить из любой директории, используя опцию `--root`, указывающую на дерикторию, где установлено Drupal 8 приложение. | ||
|
||
### Executing Drupal Console outside a Drupal site root | ||
You can run Drupal Console form any directory on your system by using the `--root` option to define the Drupal root to be use in the command execution. | ||
``` | ||
$ drupal --root=/var/www/drupal8.dev cr all | ||
``` | ||
|
||
**NOTE:** Possible messages when executing Drupal Console outside a Drupal site root and no `--root` option provided. | ||
**ВНИМАНИЕ:** При запуске Drupal Console без опции `--root` из дериктории, где не установлен Drupal 8, существует вероятность следующих сообщений. | ||
|
||
When running the project outside of a Drupal 8 site root, the following message will be shown. | ||
> In order to list all of the available commands, you should run this inside a drupal root directory. | ||
При запуске Drupal Console из дериктории, где не установлен Drupal 8. | ||
> Запустите приложение из дериктории, где установлен Drupal, чтобы увидеть все доступние команды. | ||
При запуске Drupal Console из дериктории, где находится, но еще не установлен Drupal 8. | ||
When running the project within of a Drupal 8 site root, but site is not yet installed, the following message will be shown. | ||
> In order to list all of the available commands you should install drupal first. | ||
> Установите Drupal, чтобы увидеть все доступние команды. |