Skip to content

Commit

Permalink
[hechoendrupal#222] translated how-to-download-install...
Browse files Browse the repository at this point in the history
  • Loading branch information
VladimirAus authored Aug 10, 2016
1 parent c5b7fa0 commit 1b54de7
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions ru/using/how-to-download-install-and-serve-drupal8.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
# How to download, install and serve Drupal 8
# Как скачать, установить и запустить Drupal 8

The easiest way to try Drupal 8 in your local machine is by executing the `chain` command and pass the option `--file=~/.console/chain/quick-start.yml` as shown on the following example.
Проще всего установить Drupal 8 используя команду `chain` с опцией `--file=~/.console/chain/quick-start.yml` следующим образом:

```
$ drupal chain --file=~/.console/chain/quick-start.yml
```
> NOTE: You must execute `drupal init` before in order to copy the `~/.console/chain/quick-start.yml` on your system.
> ВНИМАНИЕ: Файл `~/.console/chain/quick-start.yml` доступен после инициализации Drupal Console командой `drupal init`.
The `chain` command helps you to automate command execution, allowing you to define an external YAML file containing the definition name, option and arguments of several commands and execute that list based on the sequence defined in the file.
Команда `chain` автоматизирует выполнение списка команд, прописанных в YAML файле. В файле прописаны имена, опции и аргументы для каждой команды. Команды выполняются по мере появления в файле.

Код файла `~/.console/chain/quick-start.yml`:

The content of the provided `~/.console/chain/quick-start.yml` file is:
```
commands:
- command: site:new
Expand All @@ -32,6 +33,6 @@ commands:
- command: server
```

The previous configuration will execute several commands, in this case commands that will download and install Drupal using SQLite, and finally start the PHP's built in server, now you only need to open your browser and point it to 127.0.0.1:8088.
Вышеуказанный файл скачивает и устанавливает Drupal с поддержкой базы данных SQLite и запускает вебсайт через встроенный PHP сервер по адресу 127.0.0.1:8088.

You can duplicate or make changes on the provided YAML file, to add commands for download modules `module:download`, install modules `module:install` , import configurations `config:import` and restore your database `database:restore` or any other command provided by DrupalConsole or a custom command by your own module.
YAML файл можно модифицировать по вашему усмотрению. К примеру, можно добавить дополнительные модули (команда `module:download`), установить скачанные модули (команда `module:install`), импортировать файлы конфигурации (команда `config:import`), восстановить базу данных (команда `database:restore`) или любую команду Drupal Console.

0 comments on commit 1b54de7

Please sign in to comment.